@silexlabs/grapesjs-notifications
Version:
This GrapesJs plugin is designed to enhance the user experience within the editor by providing a robust notification system. This plugin captures and displays various types of notifications including errors, warnings, and activities, thereby facilitating
12 lines • 335 B
TypeScript
import { Notification } from './Notification';
/**
* @fileoverview Storage class
* Stores the notifications in the local storage
*/
export declare class Storage {
private storeKey?;
constructor(storeKey?: string | undefined);
getAll(): any[];
save(data: Notification[]): void;
}
//# sourceMappingURL=Storage.d.ts.map