@maxim_mazurok/gapi.client.composer-v1 0.0.20231105 → 0.0.20231129
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1158 -1864
- package/package.json +6 -6
- package/readme.md +17 -12
- package/tests.ts +0 -416
- package/tsconfig.json +0 -18
- package/tslint.json +0 -6
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maxim_mazurok/gapi.client.composer-v1",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.20231129",
|
|
4
4
|
"description": "TypeScript typings for Cloud Composer API v1",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/Maxim-Mazurok/google-api-typings-generator.git"
|
|
8
|
+
},
|
|
5
9
|
"license": "MIT",
|
|
6
10
|
"author": {
|
|
7
|
-
"email": "maxim@mazurok.com",
|
|
8
11
|
"name": "Maxim Mazurok",
|
|
12
|
+
"email": "maxim@mazurok.com",
|
|
9
13
|
"url": "https://maxim.mazurok.com"
|
|
10
14
|
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "https://github.com/Maxim-Mazurok/google-api-typings-generator.git"
|
|
14
|
-
},
|
|
15
15
|
"types": "index.d.ts",
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@types/gapi.client": "*",
|
package/readme.md
CHANGED
|
@@ -25,10 +25,13 @@ gapi.load('client', () => {
|
|
|
25
25
|
Then load api client wrapper:
|
|
26
26
|
|
|
27
27
|
```typescript
|
|
28
|
-
gapi.client.load(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
gapi.client.load(
|
|
29
|
+
'https://composer.googleapis.com/$discovery/rest?version=v1',
|
|
30
|
+
() => {
|
|
31
|
+
// now we can use:
|
|
32
|
+
// gapi.client.composer
|
|
33
|
+
}
|
|
34
|
+
);
|
|
32
35
|
```
|
|
33
36
|
|
|
34
37
|
```typescript
|
|
@@ -45,24 +48,26 @@ Don't forget to authenticate your client before sending any request to resources
|
|
|
45
48
|
// declare client_id registered in Google Developers Console
|
|
46
49
|
var client_id = '',
|
|
47
50
|
scope = [
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
51
|
+
// See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
|
52
|
+
'https://www.googleapis.com/auth/cloud-platform',
|
|
53
|
+
],
|
|
54
|
+
immediate = true;
|
|
52
55
|
// ...
|
|
53
56
|
|
|
54
57
|
gapi.auth.authorize(
|
|
55
|
-
{
|
|
58
|
+
{client_id: client_id, scope: scope, immediate: immediate},
|
|
56
59
|
authResult => {
|
|
57
60
|
if (authResult && !authResult.error) {
|
|
58
|
-
|
|
61
|
+
/* handle successful authorization */
|
|
59
62
|
} else {
|
|
60
|
-
|
|
63
|
+
/* handle authorization error */
|
|
61
64
|
}
|
|
62
|
-
}
|
|
65
|
+
}
|
|
66
|
+
);
|
|
63
67
|
```
|
|
64
68
|
|
|
65
69
|
After that you can use Cloud Composer API resources: <!-- TODO: make this work for multiple namespaces -->
|
|
66
70
|
|
|
67
71
|
```typescript
|
|
72
|
+
|
|
68
73
|
```
|
package/tests.ts
DELETED
|
@@ -1,416 +0,0 @@
|
|
|
1
|
-
/* This is stub file for gapi.client.composer-v1 definition tests */
|
|
2
|
-
// IMPORTANT
|
|
3
|
-
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
|
-
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
|
-
|
|
6
|
-
// Revision: 20231105
|
|
7
|
-
|
|
8
|
-
gapi.load('client', async () => {
|
|
9
|
-
/** now we can use gapi.client */
|
|
10
|
-
|
|
11
|
-
await gapi.client.load('https://composer.googleapis.com/$discovery/rest?version=v1');
|
|
12
|
-
/** now we can use gapi.client.composer */
|
|
13
|
-
|
|
14
|
-
/** don't forget to authenticate your client before sending any request to resources: */
|
|
15
|
-
/** declare client_id registered in Google Developers Console */
|
|
16
|
-
const client_id = '<<PUT YOUR CLIENT ID HERE>>';
|
|
17
|
-
const scope = [
|
|
18
|
-
/** See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account. */
|
|
19
|
-
'https://www.googleapis.com/auth/cloud-platform',
|
|
20
|
-
];
|
|
21
|
-
const immediate = false;
|
|
22
|
-
gapi.auth.authorize({ client_id, scope, immediate }, authResult => {
|
|
23
|
-
if (authResult && !authResult.error) {
|
|
24
|
-
/** handle successful authorization */
|
|
25
|
-
run();
|
|
26
|
-
} else {
|
|
27
|
-
/** handle authorization error */
|
|
28
|
-
}
|
|
29
|
-
});
|
|
30
|
-
|
|
31
|
-
async function run() {
|
|
32
|
-
/** Create a new environment. */
|
|
33
|
-
await gapi.client.composer.projects.locations.environments.create({
|
|
34
|
-
parent: "Test string",
|
|
35
|
-
}, {
|
|
36
|
-
config: {
|
|
37
|
-
airflowByoidUri: "Test string",
|
|
38
|
-
airflowUri: "Test string",
|
|
39
|
-
dagGcsPrefix: "Test string",
|
|
40
|
-
databaseConfig: {
|
|
41
|
-
machineType: "Test string",
|
|
42
|
-
zone: "Test string",
|
|
43
|
-
},
|
|
44
|
-
encryptionConfig: {
|
|
45
|
-
kmsKeyName: "Test string",
|
|
46
|
-
},
|
|
47
|
-
environmentSize: "Test string",
|
|
48
|
-
gkeCluster: "Test string",
|
|
49
|
-
maintenanceWindow: {
|
|
50
|
-
endTime: "Test string",
|
|
51
|
-
recurrence: "Test string",
|
|
52
|
-
startTime: "Test string",
|
|
53
|
-
},
|
|
54
|
-
masterAuthorizedNetworksConfig: {
|
|
55
|
-
cidrBlocks: [
|
|
56
|
-
{
|
|
57
|
-
cidrBlock: "Test string",
|
|
58
|
-
displayName: "Test string",
|
|
59
|
-
}
|
|
60
|
-
],
|
|
61
|
-
enabled: true,
|
|
62
|
-
},
|
|
63
|
-
nodeConfig: {
|
|
64
|
-
diskSizeGb: 42,
|
|
65
|
-
enableIpMasqAgent: true,
|
|
66
|
-
ipAllocationPolicy: {
|
|
67
|
-
clusterIpv4CidrBlock: "Test string",
|
|
68
|
-
clusterSecondaryRangeName: "Test string",
|
|
69
|
-
servicesIpv4CidrBlock: "Test string",
|
|
70
|
-
servicesSecondaryRangeName: "Test string",
|
|
71
|
-
useIpAliases: true,
|
|
72
|
-
},
|
|
73
|
-
location: "Test string",
|
|
74
|
-
machineType: "Test string",
|
|
75
|
-
network: "Test string",
|
|
76
|
-
oauthScopes: [
|
|
77
|
-
"Test string"
|
|
78
|
-
],
|
|
79
|
-
serviceAccount: "Test string",
|
|
80
|
-
subnetwork: "Test string",
|
|
81
|
-
tags: [
|
|
82
|
-
"Test string"
|
|
83
|
-
],
|
|
84
|
-
},
|
|
85
|
-
nodeCount: 42,
|
|
86
|
-
privateEnvironmentConfig: {
|
|
87
|
-
cloudComposerConnectionSubnetwork: "Test string",
|
|
88
|
-
cloudComposerNetworkIpv4CidrBlock: "Test string",
|
|
89
|
-
cloudComposerNetworkIpv4ReservedRange: "Test string",
|
|
90
|
-
cloudSqlIpv4CidrBlock: "Test string",
|
|
91
|
-
enablePrivateEnvironment: true,
|
|
92
|
-
enablePrivatelyUsedPublicIps: true,
|
|
93
|
-
networkingConfig: {
|
|
94
|
-
connectionType: "Test string",
|
|
95
|
-
},
|
|
96
|
-
privateClusterConfig: {
|
|
97
|
-
enablePrivateEndpoint: true,
|
|
98
|
-
masterIpv4CidrBlock: "Test string",
|
|
99
|
-
masterIpv4ReservedRange: "Test string",
|
|
100
|
-
},
|
|
101
|
-
webServerIpv4CidrBlock: "Test string",
|
|
102
|
-
webServerIpv4ReservedRange: "Test string",
|
|
103
|
-
},
|
|
104
|
-
recoveryConfig: {
|
|
105
|
-
scheduledSnapshotsConfig: {
|
|
106
|
-
enabled: true,
|
|
107
|
-
snapshotCreationSchedule: "Test string",
|
|
108
|
-
snapshotLocation: "Test string",
|
|
109
|
-
timeZone: "Test string",
|
|
110
|
-
},
|
|
111
|
-
},
|
|
112
|
-
resilienceMode: "Test string",
|
|
113
|
-
softwareConfig: {
|
|
114
|
-
airflowConfigOverrides: {
|
|
115
|
-
A: "Test string"
|
|
116
|
-
},
|
|
117
|
-
envVariables: {
|
|
118
|
-
A: "Test string"
|
|
119
|
-
},
|
|
120
|
-
imageVersion: "Test string",
|
|
121
|
-
pypiPackages: {
|
|
122
|
-
A: "Test string"
|
|
123
|
-
},
|
|
124
|
-
pythonVersion: "Test string",
|
|
125
|
-
schedulerCount: 42,
|
|
126
|
-
},
|
|
127
|
-
webServerConfig: {
|
|
128
|
-
machineType: "Test string",
|
|
129
|
-
},
|
|
130
|
-
webServerNetworkAccessControl: {
|
|
131
|
-
allowedIpRanges: [
|
|
132
|
-
{
|
|
133
|
-
description: "Test string",
|
|
134
|
-
value: "Test string",
|
|
135
|
-
}
|
|
136
|
-
],
|
|
137
|
-
},
|
|
138
|
-
workloadsConfig: {
|
|
139
|
-
scheduler: {
|
|
140
|
-
count: 42,
|
|
141
|
-
cpu: 42,
|
|
142
|
-
memoryGb: 42,
|
|
143
|
-
storageGb: 42,
|
|
144
|
-
},
|
|
145
|
-
triggerer: {
|
|
146
|
-
count: 42,
|
|
147
|
-
cpu: 42,
|
|
148
|
-
memoryGb: 42,
|
|
149
|
-
},
|
|
150
|
-
webServer: {
|
|
151
|
-
cpu: 42,
|
|
152
|
-
memoryGb: 42,
|
|
153
|
-
storageGb: 42,
|
|
154
|
-
},
|
|
155
|
-
worker: {
|
|
156
|
-
cpu: 42,
|
|
157
|
-
maxCount: 42,
|
|
158
|
-
memoryGb: 42,
|
|
159
|
-
minCount: 42,
|
|
160
|
-
storageGb: 42,
|
|
161
|
-
},
|
|
162
|
-
},
|
|
163
|
-
},
|
|
164
|
-
createTime: "Test string",
|
|
165
|
-
labels: {
|
|
166
|
-
A: "Test string"
|
|
167
|
-
},
|
|
168
|
-
name: "Test string",
|
|
169
|
-
satisfiesPzs: true,
|
|
170
|
-
state: "Test string",
|
|
171
|
-
storageConfig: {
|
|
172
|
-
bucket: "Test string",
|
|
173
|
-
},
|
|
174
|
-
updateTime: "Test string",
|
|
175
|
-
uuid: "Test string",
|
|
176
|
-
});
|
|
177
|
-
/** Triggers database failover (only for highly resilient environments). */
|
|
178
|
-
await gapi.client.composer.projects.locations.environments.databaseFailover({
|
|
179
|
-
environment: "Test string",
|
|
180
|
-
}, {
|
|
181
|
-
});
|
|
182
|
-
/** Delete an environment. */
|
|
183
|
-
await gapi.client.composer.projects.locations.environments.delete({
|
|
184
|
-
name: "Test string",
|
|
185
|
-
});
|
|
186
|
-
/** Executes Airflow CLI command. */
|
|
187
|
-
await gapi.client.composer.projects.locations.environments.executeAirflowCommand({
|
|
188
|
-
environment: "Test string",
|
|
189
|
-
}, {
|
|
190
|
-
command: "Test string",
|
|
191
|
-
parameters: [
|
|
192
|
-
"Test string"
|
|
193
|
-
],
|
|
194
|
-
subcommand: "Test string",
|
|
195
|
-
});
|
|
196
|
-
/** Fetches database properties. */
|
|
197
|
-
await gapi.client.composer.projects.locations.environments.fetchDatabaseProperties({
|
|
198
|
-
environment: "Test string",
|
|
199
|
-
});
|
|
200
|
-
/** Get an existing environment. */
|
|
201
|
-
await gapi.client.composer.projects.locations.environments.get({
|
|
202
|
-
name: "Test string",
|
|
203
|
-
});
|
|
204
|
-
/** List environments. */
|
|
205
|
-
await gapi.client.composer.projects.locations.environments.list({
|
|
206
|
-
pageSize: 42,
|
|
207
|
-
pageToken: "Test string",
|
|
208
|
-
parent: "Test string",
|
|
209
|
-
});
|
|
210
|
-
/** Loads a snapshot of a Cloud Composer environment. As a result of this operation, a snapshot of environment's specified in LoadSnapshotRequest is loaded into the environment. */
|
|
211
|
-
await gapi.client.composer.projects.locations.environments.loadSnapshot({
|
|
212
|
-
environment: "Test string",
|
|
213
|
-
}, {
|
|
214
|
-
skipAirflowOverridesSetting: true,
|
|
215
|
-
skipEnvironmentVariablesSetting: true,
|
|
216
|
-
skipGcsDataCopying: true,
|
|
217
|
-
skipPypiPackagesInstallation: true,
|
|
218
|
-
snapshotPath: "Test string",
|
|
219
|
-
});
|
|
220
|
-
/** Update an environment. */
|
|
221
|
-
await gapi.client.composer.projects.locations.environments.patch({
|
|
222
|
-
name: "Test string",
|
|
223
|
-
updateMask: "Test string",
|
|
224
|
-
}, {
|
|
225
|
-
config: {
|
|
226
|
-
airflowByoidUri: "Test string",
|
|
227
|
-
airflowUri: "Test string",
|
|
228
|
-
dagGcsPrefix: "Test string",
|
|
229
|
-
databaseConfig: {
|
|
230
|
-
machineType: "Test string",
|
|
231
|
-
zone: "Test string",
|
|
232
|
-
},
|
|
233
|
-
encryptionConfig: {
|
|
234
|
-
kmsKeyName: "Test string",
|
|
235
|
-
},
|
|
236
|
-
environmentSize: "Test string",
|
|
237
|
-
gkeCluster: "Test string",
|
|
238
|
-
maintenanceWindow: {
|
|
239
|
-
endTime: "Test string",
|
|
240
|
-
recurrence: "Test string",
|
|
241
|
-
startTime: "Test string",
|
|
242
|
-
},
|
|
243
|
-
masterAuthorizedNetworksConfig: {
|
|
244
|
-
cidrBlocks: [
|
|
245
|
-
{
|
|
246
|
-
cidrBlock: "Test string",
|
|
247
|
-
displayName: "Test string",
|
|
248
|
-
}
|
|
249
|
-
],
|
|
250
|
-
enabled: true,
|
|
251
|
-
},
|
|
252
|
-
nodeConfig: {
|
|
253
|
-
diskSizeGb: 42,
|
|
254
|
-
enableIpMasqAgent: true,
|
|
255
|
-
ipAllocationPolicy: {
|
|
256
|
-
clusterIpv4CidrBlock: "Test string",
|
|
257
|
-
clusterSecondaryRangeName: "Test string",
|
|
258
|
-
servicesIpv4CidrBlock: "Test string",
|
|
259
|
-
servicesSecondaryRangeName: "Test string",
|
|
260
|
-
useIpAliases: true,
|
|
261
|
-
},
|
|
262
|
-
location: "Test string",
|
|
263
|
-
machineType: "Test string",
|
|
264
|
-
network: "Test string",
|
|
265
|
-
oauthScopes: [
|
|
266
|
-
"Test string"
|
|
267
|
-
],
|
|
268
|
-
serviceAccount: "Test string",
|
|
269
|
-
subnetwork: "Test string",
|
|
270
|
-
tags: [
|
|
271
|
-
"Test string"
|
|
272
|
-
],
|
|
273
|
-
},
|
|
274
|
-
nodeCount: 42,
|
|
275
|
-
privateEnvironmentConfig: {
|
|
276
|
-
cloudComposerConnectionSubnetwork: "Test string",
|
|
277
|
-
cloudComposerNetworkIpv4CidrBlock: "Test string",
|
|
278
|
-
cloudComposerNetworkIpv4ReservedRange: "Test string",
|
|
279
|
-
cloudSqlIpv4CidrBlock: "Test string",
|
|
280
|
-
enablePrivateEnvironment: true,
|
|
281
|
-
enablePrivatelyUsedPublicIps: true,
|
|
282
|
-
networkingConfig: {
|
|
283
|
-
connectionType: "Test string",
|
|
284
|
-
},
|
|
285
|
-
privateClusterConfig: {
|
|
286
|
-
enablePrivateEndpoint: true,
|
|
287
|
-
masterIpv4CidrBlock: "Test string",
|
|
288
|
-
masterIpv4ReservedRange: "Test string",
|
|
289
|
-
},
|
|
290
|
-
webServerIpv4CidrBlock: "Test string",
|
|
291
|
-
webServerIpv4ReservedRange: "Test string",
|
|
292
|
-
},
|
|
293
|
-
recoveryConfig: {
|
|
294
|
-
scheduledSnapshotsConfig: {
|
|
295
|
-
enabled: true,
|
|
296
|
-
snapshotCreationSchedule: "Test string",
|
|
297
|
-
snapshotLocation: "Test string",
|
|
298
|
-
timeZone: "Test string",
|
|
299
|
-
},
|
|
300
|
-
},
|
|
301
|
-
resilienceMode: "Test string",
|
|
302
|
-
softwareConfig: {
|
|
303
|
-
airflowConfigOverrides: {
|
|
304
|
-
A: "Test string"
|
|
305
|
-
},
|
|
306
|
-
envVariables: {
|
|
307
|
-
A: "Test string"
|
|
308
|
-
},
|
|
309
|
-
imageVersion: "Test string",
|
|
310
|
-
pypiPackages: {
|
|
311
|
-
A: "Test string"
|
|
312
|
-
},
|
|
313
|
-
pythonVersion: "Test string",
|
|
314
|
-
schedulerCount: 42,
|
|
315
|
-
},
|
|
316
|
-
webServerConfig: {
|
|
317
|
-
machineType: "Test string",
|
|
318
|
-
},
|
|
319
|
-
webServerNetworkAccessControl: {
|
|
320
|
-
allowedIpRanges: [
|
|
321
|
-
{
|
|
322
|
-
description: "Test string",
|
|
323
|
-
value: "Test string",
|
|
324
|
-
}
|
|
325
|
-
],
|
|
326
|
-
},
|
|
327
|
-
workloadsConfig: {
|
|
328
|
-
scheduler: {
|
|
329
|
-
count: 42,
|
|
330
|
-
cpu: 42,
|
|
331
|
-
memoryGb: 42,
|
|
332
|
-
storageGb: 42,
|
|
333
|
-
},
|
|
334
|
-
triggerer: {
|
|
335
|
-
count: 42,
|
|
336
|
-
cpu: 42,
|
|
337
|
-
memoryGb: 42,
|
|
338
|
-
},
|
|
339
|
-
webServer: {
|
|
340
|
-
cpu: 42,
|
|
341
|
-
memoryGb: 42,
|
|
342
|
-
storageGb: 42,
|
|
343
|
-
},
|
|
344
|
-
worker: {
|
|
345
|
-
cpu: 42,
|
|
346
|
-
maxCount: 42,
|
|
347
|
-
memoryGb: 42,
|
|
348
|
-
minCount: 42,
|
|
349
|
-
storageGb: 42,
|
|
350
|
-
},
|
|
351
|
-
},
|
|
352
|
-
},
|
|
353
|
-
createTime: "Test string",
|
|
354
|
-
labels: {
|
|
355
|
-
A: "Test string"
|
|
356
|
-
},
|
|
357
|
-
name: "Test string",
|
|
358
|
-
satisfiesPzs: true,
|
|
359
|
-
state: "Test string",
|
|
360
|
-
storageConfig: {
|
|
361
|
-
bucket: "Test string",
|
|
362
|
-
},
|
|
363
|
-
updateTime: "Test string",
|
|
364
|
-
uuid: "Test string",
|
|
365
|
-
});
|
|
366
|
-
/** Polls Airflow CLI command execution and fetches logs. */
|
|
367
|
-
await gapi.client.composer.projects.locations.environments.pollAirflowCommand({
|
|
368
|
-
environment: "Test string",
|
|
369
|
-
}, {
|
|
370
|
-
executionId: "Test string",
|
|
371
|
-
nextLineNumber: 42,
|
|
372
|
-
pod: "Test string",
|
|
373
|
-
podNamespace: "Test string",
|
|
374
|
-
});
|
|
375
|
-
/** Creates a snapshots of a Cloud Composer environment. As a result of this operation, snapshot of environment's state is stored in a location specified in the SaveSnapshotRequest. */
|
|
376
|
-
await gapi.client.composer.projects.locations.environments.saveSnapshot({
|
|
377
|
-
environment: "Test string",
|
|
378
|
-
}, {
|
|
379
|
-
snapshotLocation: "Test string",
|
|
380
|
-
});
|
|
381
|
-
/** Stops Airflow CLI command execution. */
|
|
382
|
-
await gapi.client.composer.projects.locations.environments.stopAirflowCommand({
|
|
383
|
-
environment: "Test string",
|
|
384
|
-
}, {
|
|
385
|
-
executionId: "Test string",
|
|
386
|
-
force: true,
|
|
387
|
-
pod: "Test string",
|
|
388
|
-
podNamespace: "Test string",
|
|
389
|
-
});
|
|
390
|
-
/** List ImageVersions for provided location. */
|
|
391
|
-
await gapi.client.composer.projects.locations.imageVersions.list({
|
|
392
|
-
includePastReleases: true,
|
|
393
|
-
pageSize: 42,
|
|
394
|
-
pageToken: "Test string",
|
|
395
|
-
parent: "Test string",
|
|
396
|
-
});
|
|
397
|
-
/**
|
|
398
|
-
* Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support
|
|
399
|
-
* this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
400
|
-
*/
|
|
401
|
-
await gapi.client.composer.projects.locations.operations.delete({
|
|
402
|
-
name: "Test string",
|
|
403
|
-
});
|
|
404
|
-
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
405
|
-
await gapi.client.composer.projects.locations.operations.get({
|
|
406
|
-
name: "Test string",
|
|
407
|
-
});
|
|
408
|
-
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
409
|
-
await gapi.client.composer.projects.locations.operations.list({
|
|
410
|
-
filter: "Test string",
|
|
411
|
-
name: "Test string",
|
|
412
|
-
pageSize: 42,
|
|
413
|
-
pageToken: "Test string",
|
|
414
|
-
});
|
|
415
|
-
}
|
|
416
|
-
});
|
package/tsconfig.json
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"module": "commonjs",
|
|
4
|
-
"lib": ["es6", "dom"],
|
|
5
|
-
"noImplicitAny": true,
|
|
6
|
-
"noImplicitThis": true,
|
|
7
|
-
"strictNullChecks": true,
|
|
8
|
-
"baseUrl": "../",
|
|
9
|
-
"typeRoots": [
|
|
10
|
-
"../"
|
|
11
|
-
],
|
|
12
|
-
"types": [],
|
|
13
|
-
"noEmit": true,
|
|
14
|
-
"forceConsistentCasingInFileNames": true,
|
|
15
|
-
"strictFunctionTypes": true
|
|
16
|
-
},
|
|
17
|
-
"files": ["index.d.ts", "tests.ts"]
|
|
18
|
-
}
|