@graphql-markdown/core
Version:
GraphQL-Markdown core package for generating Markdown documentation from a GraphQL schema.
20 lines • 504 B
TypeScript
/**
* Render homepage event class.
*
* @packageDocumentation
*/
import type { CancellableEventOptions } from "@graphql-markdown/utils";
import { DataEvent } from "@graphql-markdown/utils";
/**
* Event emitted before/after rendering homepage.
*
* @category Events
*/
export declare class RenderHomepageEvent extends DataEvent<{
outputDir: string;
}> {
constructor(data: {
outputDir: string;
}, options?: CancellableEventOptions);
}
//# sourceMappingURL=render-homepage.d.ts.map