ngx-store-9
Version:
Angular decorators to automagically keep variables in HTML5 LocalStorage, SessionStorage, cookies; injectable services for managing and listening to data changes and a bit more.
37 lines (36 loc) • 1.15 kB
TypeScript
export declare class NgxStorageEvent implements StorageEvent {
type: string;
key: string;
storageArea: Storage;
protected static initTimeStamp: number;
oldValue: any;
newValue: any;
NONE: any;
timeStamp: number;
readonly bubbles = false;
readonly cancelBubble = false;
readonly cancelable = false;
readonly composed = false;
readonly currentTarget: Window & typeof globalThis;
readonly defaultPrevented = false;
readonly eventPhase = 2;
readonly isTrusted = true;
readonly path: (Window & typeof globalThis)[];
readonly returnValue = true;
readonly srcElement: any;
readonly target: Window & typeof globalThis;
readonly url: string;
isInternal: boolean;
constructor(type: string, key: string, storageArea: Storage);
/**
* Methods below exist only to satisfy TypeScript compiler
*/
get initEvent(): any;
get preventDefault(): any;
get stopImmediatePropagation(): any;
get stopPropagation(): any;
get composedPath(): any;
get AT_TARGET(): number;
get BUBBLING_PHASE(): number;
get CAPTURING_PHASE(): number;
}