UNPKG

@microsoft/api-documenter

Version:

Read JSON files from api-extractor, generate documentation pages

13 lines 513 B
import { CommandLineAction, type ICommandLineActionOptions } from '@rushstack/ts-command-line'; import { ApiModel } from '@microsoft/api-extractor-model'; export interface IBuildApiModelResult { apiModel: ApiModel; inputFolder: string; outputFolder: string; } export declare abstract class BaseAction extends CommandLineAction { #private; protected constructor(options: ICommandLineActionOptions); protected buildApiModel(): IBuildApiModelResult; } //# sourceMappingURL=BaseAction.d.ts.map