UNPKG

kist

Version:

Package Pipeline Processor

15 lines (11 loc) 519 B
// ============================================================================ // Import // ============================================================================ import { ActionInterface } from "./ActionInterface"; // ============================================================================ // Interfaces // ============================================================================ // ActionPlugin.ts export interface ActionPlugin { registerActions(): Record<string, new () => ActionInterface>; }