@ekifvk/dashcore
v1.0.17
Published
Dashcore is a framework based on Angular (5.x+) that provides universal resource management, component state management, platform detection and event-based global message loop. It also has a solution for multiple window angular application, resources and
Downloads
20
Readme
Dashcore
Dashcore is a framework based on Angular (5.x+) that provides universal resource management, component state management, platform detection and event-based global message loop. It also has a solution for multiple window angular application, resources and requests can share their data between each window.
How to use
npm install @ekifvk/dashcore --save
and then
import { ... } from '@ekifvk/dashcore';
There are two type definitions in typings.d.ts:
declare type Nullable<T> = T | null | undefined;
declare type RawRegularExpression = string | RegExp;
Nullable<T>
means a value can be null or undefined, RawRegularExpression
is a type using by runtime listener injector (see documentation of Base structure).