aboutsummaryrefslogtreecommitdiff
path: root/common/types/queryType.ts
diff options
context:
space:
mode:
Diffstat (limited to 'common/types/queryType.ts')
-rw-r--r--common/types/queryType.ts24
1 files changed, 24 insertions, 0 deletions
diff --git a/common/types/queryType.ts b/common/types/queryType.ts
new file mode 100644
index 0000000..42847dc
--- /dev/null
+++ b/common/types/queryType.ts
@@ -0,0 +1,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