UNPKG

kist

Version:

Lightweight Package Pipeline Processor with Plugin Architecture

10 lines 322 B
import type { 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