Skip to content

PanelPersistProps

type PanelPersistProps = {
key?: string
storage?: 'local' | 'session'
syncTabs?: boolean
}

Options for persisting Inspect.Panel state or configuration using the Panel UI.

optional key: string;

Storage key used with local/session storage

'siv.panel'

optional storage: "local" | "session";

The storage type to use.

'local'

optional syncTabs: boolean;

Enable or disable syncing the state changes from other tabs.

false