Esposter
    Preparing search index...

    Interface InitArgs

    interface InitArgs {
        backend: {
            default: BackendType;
            description: string;
            options: BackendType[];
            type: "enum";
        };
        environment: {
            description: string;
            options: Nuxt[];
            required: false;
            type: "enum";
        };
        force: { default: boolean; description: string; type: "boolean" };
        [key: string]: ArgDef;
    }

    Indexable

    • [key: string]: ArgDef
    Index
    backend: {
        default: BackendType;
        description: string;
        options: BackendType[];
        type: "enum";
    }
    environment: {
        description: string;
        options: Nuxt[];
        required: false;
        type: "enum";
    }
    force: { default: boolean; description: string; type: "boolean" }