-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
190 lines (165 loc) · 3.44 KB
/
Copy pathtypes.ts
File metadata and controls
190 lines (165 loc) · 3.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
interface BasicInfo {
name: string;
description: string;
featured_image: string;
project_url: string;
tags: {
level?: string[];
"based-on": string[];
language: string[];
other?: string[];
};
}
interface Website {
type: "website";
website_link?: string[];
git_link: string[];
commits: string[];
features: string[];
tech_stack: { [key: string]: string[] };
most_used_packages: string[];
images: [string];
}
interface Package {
type: "package";
npm_link: string[];
git_link: string[];
commits: string[];
features: string[];
images: [string];
}
interface Utility {
type: "utility";
git_link: string[];
commits: string[];
features: string[];
tech_stack: { [key: string]: string[] };
most_used_packages: string[];
images: [string];
}
interface BasicInput {
name: string;
default?: string | number | boolean | string[];
placeholder?: string;
required?: boolean;
}
interface ColorInput {
type: "color";
}
interface UrlInput {
type: "url";
}
interface TextAreaInput {
type: "textarea";
}
interface CheckboxInput {
type: "checkbox";
}
interface TextArrayInput {
type: "text-array";
}
interface SliderInput {
type: "slider";
min?: number;
max?: number;
step?: number;
}
interface TextInput {
type: "text";
}
interface NumberInput {
type: "number";
}
interface InputGroup {
type: "inputs";
inputs: InputType[];
}
interface SelectInput {
type: "select";
values: string[];
}
interface RadioInput {
type: "radio";
values: string[];
}
interface ConditionalInput {
type: "conditional-input";
name: "NA";
switch: string;
inputs: { [key: string]: InputType[] };
}
interface ObjectArrayInput {
type: "object-array";
}
interface ObjectStringInput {
type: "object-string";
}
interface InputInput {
type: "input-input";
}
interface JSONInput {
type: "json";
}
export type InputType = BasicInput &
(
| SliderInput
| TextInput
| NumberInput
| ColorInput
| UrlInput
| TextAreaInput
| CheckboxInput
| TextArrayInput
| SelectInput
| RadioInput
| InputGroup
| ConditionalInput
| ObjectArrayInput
| ObjectStringInput
| InputInput
| JSONInput
);
interface Model {
type: "model";
feature_description: { [key: string]: string };
ipynb_json: string;
dataset: string;
git_link: string[];
kaggle_dataset?: string;
api?: string;
most_used_packages: string[];
inputs?: InputType[];
examples: {
[key: string]: number | string;
}[];
models?: {
api: string;
inputs: InputType[];
examples: {
[key: string]: number | string;
}[];
title: string;
}[];
}
interface Analysis {
type: "analysis";
feature_description: { [key: string]: string };
ipynb_json: string;
dataset: string;
git_link: string[];
kaggle_dataset?: string;
most_used_packages: string[];
}
export type Project = BasicInfo &
(Website | Package | Utility | Model | Analysis);
export type Blog = {
id: string;
title: string;
description: "";
show_title: boolean;
fetch_url: string;
blog_url: string;
type: "html";
featured_image: string;
tags: string[];
};