@graphql-markdown/cli
Version:
NodeJS CLI for generating Markdown documentation from a GraphQL schema.
17 lines (16 loc) • 551 B
TypeScript
/**
* Entry point for the GraphQL Markdown CLI.
* Loads configuration from graphql-config and sets up command-line interface.
* @module
*/
import type { GraphQLExtensionDeclaration } from "@graphql-markdown/types";
/**
* Name of the GraphQL Markdown extension for graphql-config
*/
export declare const EXTENSION_NAME: "graphql-markdown";
/**
* GraphQL config extension declaration for GraphQL Markdown
* @returns Extension configuration object
*/
export declare const graphQLConfigExtension: GraphQLExtensionDeclaration;