• Returns a store, creates it if necessary.

    Parameters

    • Optional pinia: null | Pinia

      Pinia instance to retrieve the store

    • Optional hot: StoreGeneric

      dev only hot module replacement

    Returns Store<"wizard", _UnwrapAll<Pick<{
        currStep: Ref<WizardStep>;
        fileData: Ref<null | {
            [toStringTag]: string;
            byteLength: number;
            slice(begin, end?) => ArrayBuffer;
        }>;
        goToStep: ((step) => void);
        layerInfo: Ref<{
            config: { id: string; layerType: LayerType; url: string; };
            configOptions: string[];
        }>;
        layerSource: Ref<undefined | LayerSource>;
        nested: Ref<boolean>;
        typeSelection: Ref<string>;
        url: Ref<string>;
    }, "url" | "layerSource" | "typeSelection" | "nested" | "fileData" | "layerInfo" | "currStep">>, Pick<{
        currStep: Ref<WizardStep>;
        fileData: Ref<null | {
            [toStringTag]: string;
            byteLength: number;
            slice(begin, end?) => ArrayBuffer;
        }>;
        goToStep: ((step) => void);
        layerInfo: Ref<{
            config: { id: string; layerType: LayerType; url: string; };
            configOptions: string[];
        }>;
        layerSource: Ref<undefined | LayerSource>;
        nested: Ref<boolean>;
        typeSelection: Ref<string>;
        url: Ref<string>;
    }, never>, Pick<{
        currStep: Ref<WizardStep>;
        fileData: Ref<null | {
            [toStringTag]: string;
            byteLength: number;
            slice(begin, end?) => ArrayBuffer;
        }>;
        goToStep: ((step) => void);
        layerInfo: Ref<{
            config: { id: string; layerType: LayerType; url: string; };
            configOptions: string[];
        }>;
        layerSource: Ref<undefined | LayerSource>;
        nested: Ref<boolean>;
        typeSelection: Ref<string>;
        url: Ref<string>;
    }, "goToStep">>

Generated using TypeDoc