/** * Schema loading event class. * * @packageDocumentation */ import type { GraphQLSchema, Maybe, SchemaMap } from "@graphql-markdown/types"; import type { CancellableEventOptions } from "@graphql-markdown/utils"; import { DataEvent } from "@graphql-markdown/utils"; /** * Event emitted before/after loading a GraphQL schema. * * @category Events */ export declare class SchemaEvent extends DataEvent<{ schemaLocation?: string; schema?: Maybe; rootTypes?: Maybe; }> { constructor(data: { schemaLocation?: string; schema?: Maybe; rootTypes?: Maybe; }, options?: CancellableEventOptions); } //# sourceMappingURL=schema-load.d.ts.map