import { SchemaModelType } from "./SchemaModelType.js"; import { z } from "zod"; //#region src/GraphQLSchemaType.d.ts /** * Wrapper for GraphQL Type Definitions to be used in ContractSpec Schemas. * Note: Runtime validation is limited to 'unknown' (pass-through) as SDL is not parsed at runtime. */ declare class GraphQLSchemaType implements SchemaModelType { readonly typeDef: string; readonly name: string; readonly _isSchemaType = true; constructor(typeDef: string, name: string); getZod(): z.ZodType; } //#endregion export { GraphQLSchemaType }; //# sourceMappingURL=GraphQLSchemaType.d.ts.map