@graphql-markdown/core
Version:
GraphQL-Markdown core package for generating Markdown documentation from a GraphQL schema.
21 lines (20 loc) • 479 B
JavaScript
;
/**
* Diff checking event class.
*
* @packageDocumentation
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.DiffCheckEvent = void 0;
const utils_1 = require("@graphql-markdown/utils");
/**
* Event emitted before/after checking schema differences.
*
* @category Events
*/
class DiffCheckEvent extends utils_1.DataEvent {
constructor(data, options) {
super(data, options);
}
}
exports.DiffCheckEvent = DiffCheckEvent;