Skip to content

Commit 455a1b6

Browse files
committed
add no check
1 parent dd1b439 commit 455a1b6

10 files changed

+11
-1
lines changed

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
"src/Parse.ts",
1313
"src/ParseSession.ts"
1414
]
15-
}
15+
}

types/Cloud.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
/**
23
* Contains functions for calling and declaring
34
* <a href="/docs/cloud_code_guide#functions">cloud functions</a>.

types/FacebookUtils.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
export default FacebookUtils;
23
declare namespace FacebookUtils {
34
/**

types/LiveQueryClient.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
export default LiveQueryClient;
23
/**
34
* Creates a new LiveQueryClient.

types/ParseConfig.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
export default ParseConfig;
23
/**
34
* Parse.Config is a local representation of configuration data that

types/ParseFile.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
type FileSource = {
23
format: "file";
34
file: Blob;

types/ParseInstallation.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
export default class Installation extends ParseObject {
23
constructor(attributes: AttributeMap | null);
34
}

types/ParsePolygon.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// @ts-nocheck
2+
13
export default ParsePolygon;
24
/**
35
* Creates a new Polygon with any of the following forms:<br>

types/ParseSchema.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
export default ParseSchema;
23
/**
34
* A Parse.Schema object is for handling schema data from Parse.

types/Push.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-nocheck
12
/**
23
* Contains functions to deal with Push in Parse.
34
*

0 commit comments

Comments
 (0)