Socialify

Folder ..

Viewing queryType.ts
24 lines (20 loc) • 389.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { Font, Pattern, Theme } from './configType'

type QueryType = {
  font: Font
  theme: Theme
  pattern: Pattern

  language: string
  language2: string
  stargazers: string
  forks: string
  issues: string
  pulls: string
  description: string
  descriptionEditable: string
  owner: string
  name: string
  logo: string

  _owner: string
  _name: string
}

export default QueryType