Strata - v1.4.10
    Preparing search index...

    Interface AutoSaveConfig

    Configuration for the automatic save system.

    interface AutoSaveConfig {
        debounceMs: number;
        enabled: boolean;
        intervalMs: number;
        maxSlots: number;
        saveOnChange: boolean;
        storageKey: string;
    }
    Index

    Properties

    debounceMs: number

    Wait time after a change before autosaving.

    enabled: boolean

    Whether autosave is enabled.

    intervalMs: number

    Interval in milliseconds between saves.

    maxSlots: number

    Maximum number of autosave slots to cycle through.

    saveOnChange: boolean

    Whether to trigger a save immediately on every state change.

    storageKey: string

    Unique key for identifying autosave data in storage.