Trilium Frontend API
    Preparing search index...

    Type Alias ValueTypeToTs

    ValueTypeToTs: {
        [K in LabelType]: K extends "boolean"
            ? boolean
            : K extends "number" ? number : string
    }

    What each label type is read as in TypeScript. Written as a mapped type over LabelType so a type added to that vocabulary cannot be left without a reading here.