@osaedasia/oresume
Version:
A user-friendly library for generating complete Single Page Applications (SPAs)
14 lines (13 loc) • 376 B
TypeScript
import { SamError } from "@osaedasia/sam";
/**
* Custom error thrown when attempting to access non-existent data in storage.
* @extends SamError
*/
export declare class StorageDataNotFoundError extends SamError {
}
/**
* Custom error thrown when an invalid storage key is provided.
* @extends SamError
*/
export declare class InvalidStorageKeyError extends SamError {
}