Skip to content

Commit 6cebd48

Browse files
committed
Revert "Fixes Typescript Defs based on CoreManager Changes."
This reverts commit 25441f9.
1 parent b1774cd commit 6cebd48

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

types/ParseQuery.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ type FullTextQueryOptions = {
2727
caseSensitive?: boolean;
2828
diacriticSensitive?: boolean;
2929
};
30-
export type QueryJSON = {
30+
type QueryJSON = {
3131
where: WhereClause;
3232
watch?: string;
3333
include?: string;
@@ -946,7 +946,7 @@ declare class ParseQuery {
946946
cancel(): ParseQuery;
947947
_setRequestTask(options: any): void;
948948
/**
949-
* Sets a comment to the query so that the query
949+
* Sets a comment to the query so that the query
950950
* can be identified when using a the profiler for MongoDB.
951951
*
952952
* @param {string} value a comment can make your profile data easier to interpret and trace.

types/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"compilerOptions": {
33
"module": "commonjs",
4-
"lib": ["es6", "dom"],
4+
"lib": ["es6"],
55
"noImplicitAny": true,
66
"noImplicitThis": true,
77
"strictFunctionTypes": true,

0 commit comments

Comments
 (0)