@cute-dw/core
Version:
This TypeScript library is the main part of a more powerfull package designed for the fast WEB software development. The cornerstone of the library is the **DataStore** class, which might be useful when you need a full control of the data, but do not need
11 lines (10 loc) • 329 B
TypeScript
export declare const FAILURE = -1;
export declare const SUSSESS = 1;
export declare const NO_ACTION = 0;
export declare const CONTINUE_ACTION = 1;
export declare const PREVENT_ACTION = 0;
export type ReturnStatus = number;
export declare abstract class AbstractController {
onInit(): void;
onDestroy(): void;
}