@graphql-markdown/core
Version:
GraphQL-Markdown core package for generating Markdown documentation from a GraphQL schema.
21 lines (20 loc) • 508 B
JavaScript
;
/**
* Render files event class.
*
* @packageDocumentation
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.RenderFilesEvent = void 0;
const utils_1 = require("@graphql-markdown/utils");
/**
* Event emitted after all output files (entities + homepage) have been written.
*
* @category Events
*/
class RenderFilesEvent extends utils_1.DataEvent {
constructor(data, options) {
super(data, options);
}
}
exports.RenderFilesEvent = RenderFilesEvent;