@apexcura/ui-builder
Version:
A low-code UI builder library for dynamic form generation and reusable components built with React, Redux, Tailwind, and Ant Design.
14 lines (13 loc) • 342 B
TypeScript
type StorageProps = {
key: string;
data?: object;
};
declare class Storage {
store({ key, data }: StorageProps): void;
getJson({ key }: StorageProps): any;
get({ key }: StorageProps): string | null;
remove({ key }: StorageProps): void;
clearAll(): void;
}
declare const _default: Storage;
export default _default;