UNPKG

angular2-schema-form

Version:

Angular2 Schema Form (DISCLAIMER: it is not related to angular-schema-form)

10 lines (9 loc) 236 B
import { Action } from './action'; export declare class ActionRegistry { actions: { [key: string]: Action; }; clear(): void; register(actionId: string, action: Action): void; get(actionId: string): Action; }