@datorama/akita
Version:
State Management Tailored-Made for JS Applications
11 lines (10 loc) • 506 B
TypeScript
export declare const currentAction: {
type: any;
entityIds: any;
skip: boolean;
};
export declare function resetCustomAction(): void;
export declare function logAction(type: string, entityIds?: any): void;
export declare function setAction(type: string, entityIds?: any): void;
export declare function setSkipAction(skip?: boolean): void;
export declare function action(action: string, entityIds?: any): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => PropertyDescriptor;