import { GraphQLJSON } from "./graphql.mjs"; //#region src/types/schema.d.ts /** * Options for extracting field paths from GraphQL schema */ interface ExtractPathOptions { separator?: string; isRoot?: boolean; addSelf?: boolean; } /** * Result of schema extraction containing paths and JSON representation */ interface SchemaExtractionResult { names: string[]; schemasJSON: GraphQLJSON; } //#endregion export { ExtractPathOptions, SchemaExtractionResult };