declare global { interface ArrayConstructor { isArray(arg: ReadonlyArray | any): arg is ReadonlyArray; } } /** * This rewrites graphitation specific directives to relay ones. Currently it does the following: * * - `@graphitation_test_operation` is rewritten to `@raw_response_type`. * In the future this should probably also add `@relay_test_operation`. * * @param document A single GraphQL document */ export declare function rewriteGraphitationDirectives(document: string): string; //# sourceMappingURL=rewriteGraphitationDirectives.d.ts.map