UNPKG

kist

Version:

Lightweight Package Pipeline Processor with Plugin Architecture

10 lines 317 B
import { ActionInterface } from "./ActionInterface.js"; export interface ActionPlugin { registerActions(): Record<string, new () => ActionInterface>; version?: string; description?: string; author?: string; repository?: string; keywords?: string[]; } //# sourceMappingURL=ActionPlugin.d.ts.map