@graphql-tools/utils 6.0.1-alpha-d6f1ed7.0 → 6.0.1
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/helpers.d.ts +1 -1
- package/map.d.ts +3 -0
- package/package.json +1 -1
package/helpers.d.ts
CHANGED
|
@@ -4,6 +4,6 @@ export declare function isEqual<T>(a: T, b: T): boolean;
|
|
|
4
4
|
export declare function isNotEqual<T>(a: T, b: T): boolean;
|
|
5
5
|
export declare function isDocumentString(str: string): boolean;
|
|
6
6
|
export declare function isValidPath(str: string): boolean;
|
|
7
|
-
export declare function compareStrings<A, B>(a: A, b: B):
|
|
7
|
+
export declare function compareStrings<A, B>(a: A, b: B): 1 | -1 | 0;
|
|
8
8
|
export declare function nodeToString(a: ASTNode): string;
|
|
9
9
|
export declare function compareNodes(a: ASTNode, b: ASTNode, customFn?: (a: any, b: any) => number): number;
|
package/map.d.ts
ADDED