blob: 42847dc73fa1d38be4374a6219567183be9e72b2 (
plain)
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
|