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