UNPKG

@graphql-markdown/core

Version:

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

18 lines (17 loc) 435 B
"use strict"; /** * Diff checking event constants. * * @packageDocumentation */ Object.defineProperty(exports, "__esModule", { value: true }); exports.DiffEvents = void 0; /** * Event names for diff checking lifecycle. */ exports.DiffEvents = { /** Emitted before checking schema differences */ BEFORE_CHECK: "diff:beforeCheck", /** Emitted after checking schema differences */ AFTER_CHECK: "diff:afterCheck", };