@logseq/libs
    Preparing search index...

    Type Alias SettingSchemaDesc

    type SettingSchemaDesc = {
        default: string | number | boolean | any[] | object | null;
        description: string;
        enumChoices?: string[];
        enumPicker?: "select" | "radio" | "checkbox";
        inputAs?: "color" | "date" | "datetime-local" | "range" | "textarea";
        key: string;
        title: string;
        type: "string" | "number" | "boolean" | "enum" | "object" | "heading";
    }
    Index

    Properties

    default: string | number | boolean | any[] | object | null
    description: string
    enumChoices?: string[]
    enumPicker?: "select" | "radio" | "checkbox"
    inputAs?: "color" | "date" | "datetime-local" | "range" | "textarea"
    key: string
    title: string
    type: "string" | "number" | "boolean" | "enum" | "object" | "heading"