simplify-angular
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.0.0.
12 lines (11 loc) • 344 B
TypeScript
export declare class SimpleStorage {
version: number;
constructor();
checkLocalExist(name: string): boolean;
getAllLocalData(): any;
getLocalData(name: any): any;
removeLocalData(name: string): void;
setLocalData(name: string, value: any): boolean;
isJSON(value: string): boolean;
parse(params: any): any;
}