@graphql-markdown/core
Version:
GraphQL-Markdown core package for generating Markdown documentation from a GraphQL schema.
24 lines • 619 B
TypeScript
/**
* Diff checking event class.
*
* @packageDocumentation
*/
import type { CancellableEventOptions } from "@graphql-markdown/utils";
import { DataEvent } from "@graphql-markdown/utils";
/**
* Event emitted before/after checking schema differences.
*
* @category Events
*/
export declare class DiffCheckEvent extends DataEvent<{
schema?: unknown;
outputDir?: string;
schemaHasChanges?: boolean;
}> {
constructor(data: {
schema?: unknown;
outputDir?: string;
schemaHasChanges?: boolean;
}, options?: CancellableEventOptions);
}
//# sourceMappingURL=diff-check.d.ts.map