-
Notifications
You must be signed in to change notification settings - Fork 11
/
global.d.ts
179 lines (161 loc) · 3.39 KB
/
global.d.ts
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
type nameConventionType =
| "none"
| "PascalCase"
| "camelCase"
| "snake_case"
| "kebab-case"
| "UPPERCASE"
| "lowercase"
| "MACRO_CASE"
| "COBOL-CASE"
| "Cobol case"
| "Ada_Case"
| "dot.notation";
type colorModeType =
| "hex"
| "rgba-object"
| "rgba-css"
| "hsla-object"
| "hsla-css";
type stylesType = "text" | "colors" | "effects" | "grids";
type variableFeatureType = "scope" | "hidden";
type JSONSettingsStyleType = {
isIncluded: boolean;
customName: string;
};
interface IncludedStylesI {
colors: JSONSettingsStyleType;
text: JSONSettingsStyleType;
effects: JSONSettingsStyleType;
grids: JSONSettingsStyleType;
}
interface JsonbinCredentialsI {
isEnabled: boolean;
id?: string;
name: string;
secretKey: string;
}
interface GithubCredentialsI {
isEnabled: boolean;
token: string;
repo: string;
branch: string;
fileName: string;
owner: string;
commitMessage?: string;
}
interface GithubPullRequestCredentialsI {
isEnabled: boolean;
token: string;
repo: string;
baseBranch: string;
branch: string;
fileName: string;
owner: string;
commitMessage?: string;
pullRequestTitle?: string;
pullRequestBody?: string;
}
interface GitlabCredentialsI {
isEnabled: boolean;
owner: string;
repo: string;
branch: string;
fileName: string;
token: string;
commitMessage?: string;
}
interface CustomURLCredentialsI {
isEnabled: boolean;
url: string;
method: "POST" | "PUT";
headers: string;
}
interface JSONSettingsConfigI {
includedStyles: IncludedStylesI;
includeScopes: boolean;
useDTCGKeys: boolean;
includeValueAliasString: boolean;
colorMode: colorModeType;
variableCollections: string[];
selectedCollection: string;
servers: {
jsonbin: JsonbinCredentialsI;
github: GithubCredentialsI;
githubPullRequest: GithubPullRequestCredentialsI;
gitlab: GitlabCredentialsI;
customURL: CustomURLCredentialsI;
};
}
interface PluginTokenI {
$value: string;
$type: TokenType;
$description: string;
scopes?: VariableScope[];
$extensions: {
mode: Object;
figma: {
variableId: string;
codeSyntax: {
WEB?: string;
iOS?: string;
ANDROID?: string;
};
collection: {
id: string;
name: string;
defaultModeId: string;
};
};
};
}
type ServerType =
| "jsonbin"
| "github"
| "githubPullRequest"
| "gitlab"
| "bitbucket"
| "customURL"
| "none";
type ViewsConfigI = {
[K in ServerType]: {
title: string;
description: React.ReactNode;
isEnabled: boolean;
fields: {
readonly id: string;
readonly type: "input" | "textarea" | "select";
readonly required: boolean;
readonly placeholder?: string;
readonly options?: string[];
value: string;
}[];
};
};
interface TokensMessageI {
type: "getTokens" | "setTokens";
tokens: any;
role: "preview" | "push" | "download";
server: ServerType[];
}
interface MetaPropsI {
useDTCGKeys: boolean;
colorMode: colorModeType;
variableCollections: string[];
createdAt: string;
}
interface ToastIPropsI {
title: string;
message: string;
options: {
type?: "success" | "error" | "warn" | "info";
timeout?: number;
onClose?: () => void;
};
}
// Extend Figmas PaintStyle interface
interface PaintStyleExtended extends PaintStyle {
readonly boundVariables?: {
readonly paints: VariableAlias[];
};
}