@tauri-apps/plugin-store - v2.3.0
    Preparing search index...

    Type Alias StoreOptions

    Options to create a store

    type StoreOptions = {
        autoSave?: boolean | number;
        serializeFnName?: string;
        deserializeFnName?: string;
        createNew?: boolean;
    }
    Index

    Properties

    autoSave?: boolean | number

    Auto save on modification with debounce duration in milliseconds, it's 100ms by default, pass in false to disable it

    serializeFnName?: string

    Name of a serialize function registered in the rust side plugin builder

    deserializeFnName?: string

    Name of a deserialize function registered in the rust side plugin builder

    createNew?: boolean

    Force create a new store with default values even if it already exists.