UNPKG

kist

Version:

Lightweight Package Pipeline Processor with Plugin Architecture

11 lines 453 B
import type { MetadataInterface } from "./MetadataInterface.js"; import type { OptionsInterface } from "./OptionsInterface.js"; import type { 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