Skip to main content

Home > @jsplumbtoolkit/core > Storage

Storage variable

Signature:

Storage: {
set: (key: string, value: any) => void;
get: (key: string) => any;
clear: (key: string) => void;
clearAll: () => void;
setJSON: (key: string, value: any) => void;
getJSON: (key: string) => any;
}