@adorsys-gis/storage
Version:
A service module for data storage and retrieval in Progressive Web Apps (PWAs) using IndexedDB, LocalStorage, and SessionStorage. This library provides an interface for efficient asynchronous storage of structured data, designed to meet the needs of moder
13 lines (12 loc) • 347 B
TypeScript
import { MethodNames } from '../types';
/**
* Storage Error class
*/
export declare class StorageError extends Error {
/**
* Storage Error class constructor
* @param message The error message
* @param context The name of the method where the error was thrown
*/
constructor(message: string, context?: MethodNames);
}