1 | import { ASTNode } from 'graphql';
|
2 | export declare const asArray: <T>(fns: T | T[]) => T[];
|
3 | export declare function isDocumentString(str: any): boolean;
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 | export declare function isValidPath(str: any): boolean;
|
13 | export declare function compareStrings<A, B>(a: A, b: B): 1 | -1 | 0;
|
14 | export declare function nodeToString(a: ASTNode): string;
|
15 | export declare function compareNodes(a: ASTNode, b: ASTNode, customFn?: (a: any, b: any) => number): number;
|
16 | export declare function isSome<T>(input: T): input is Exclude<T, null | undefined>;
|
17 | export declare function assertSome<T>(input: T, message?: string): asserts input is Exclude<T, null | undefined>;
|