This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/@graphql-tools/utils/clone.d.ts

5 lines
316 B
TypeScript

import { GraphQLDirective, GraphQLNamedType, GraphQLSchema } from 'graphql';
export declare function cloneDirective(directive: GraphQLDirective): GraphQLDirective;
export declare function cloneType(type: GraphQLNamedType): GraphQLNamedType;
export declare function cloneSchema(schema: GraphQLSchema): GraphQLSchema;