// ============================================================================
// Import
// ============================================================================

import { ActionInterface } from "./ActionInterface";

// ============================================================================
// Interfaces
// ============================================================================

// ActionPlugin.ts
export interface ActionPlugin {
    registerActions(): Record<string, new () => ActionInterface>;
}
