Trilium Frontend API
    Preparing search index...

    Interface DefinitionObject

    interface DefinitionObject {
        inverseRelation?: string;
        isPromoted?: boolean;
        labelType?:
            | "number"
            | "boolean"
            | "text"
            | "textarea"
            | "select"
            | "date"
            | "datetime"
            | "time"
            | "url"
            | "email"
            | "phone"
            | "color";
        multiplicity?: "single"
        | "multi";
        numberPrecision?: number;
        promotedAlias?: string;
        selectOptions?: string[];
    }
    Index
    inverseRelation?: string
    isPromoted?: boolean
    labelType?:
        | "number"
        | "boolean"
        | "text"
        | "textarea"
        | "select"
        | "date"
        | "datetime"
        | "time"
        | "url"
        | "email"
        | "phone"
        | "color"
    multiplicity?: "single" | "multi"
    numberPrecision?: number
    promotedAlias?: string
    selectOptions?: string[]

    The values a select field offers, in the order they are offered.