@ngx-pwa/local-storage
Version:
Efficient local storage module for Angular: simple API based on native localStorage API, but internally stored via the asynchronous IndexedDB API for performance, and wrapped in RxJS observables to be homogeneous with other Angular modules.
11 lines (10 loc) • 404 B
TypeScript
/**
* Exception message when a value is not valid against the JSON schema
*/
export declare const VALIDATION_ERROR = "Data stored is not valid against the provided JSON schema.\nCheck your JSON schema, otherwise it means data has been corrupted.";
/**
* Exception raised when a value is not valid against the JSON schema
*/
export declare class ValidationError extends Error {
message: string;
}