dgeni
Version:
Flexible JavaScript documentation generator used by both AngularJS and Angular
14 lines (13 loc) • 418 B
TypeScript
import { DocCollection } from './DocCollection';
export declare type ProcessorDef = Processor | (((...args: any[]) => Processor) & {
name?: string;
});
export interface Processor {
$process(docs: DocCollection): DocCollection | PromiseLike<DocCollection> | void;
name?: string;
description?: string;
$runBefore?: string[];
$runAfter?: string[];
$enabled?: boolean;
$package?: string;
}