kist
Version:
Lightweight Package Pipeline Processor with Plugin Architecture
11 lines • 438 B
TypeScript
import { MetadataInterface } from "./MetadataInterface.js";
import { OptionsInterface } from "./OptionsInterface.js";
import { StageInterface } from "./StageInterface.js";
export interface ConfigInterface {
extends?: string | string[];
metadata?: MetadataInterface;
options?: OptionsInterface;
stages: StageInterface[];
validateConfig?(config: ConfigInterface): boolean;
}
//# sourceMappingURL=ConfigInterface.d.ts.map