UNPKG

@graphql-markdown/core

Version:

GraphQL-Markdown core package for generating Markdown documentation from a GraphQL schema.

21 lines (20 loc) 492 B
"use strict"; /** * Render homepage event class. * * @packageDocumentation */ Object.defineProperty(exports, "__esModule", { value: true }); exports.RenderHomepageEvent = void 0; const utils_1 = require("@graphql-markdown/utils"); /** * Event emitted before/after rendering homepage. * * @category Events */ class RenderHomepageEvent extends utils_1.DataEvent { constructor(data, options) { super(data, options); } } exports.RenderHomepageEvent = RenderHomepageEvent;