trilium
    Preparing search index...
    interface Froca {
        attachments: Record<string, FAttachment>;
        attributes: Record<string, FAttribute>;
        blobPromises: Record<string, null | Promise<void | default>>;
        branches: Record<string, FBranch>;
        notes: Record<string, FNote>;
        getAttachmentsForNote(noteId: string): Promise<FAttachment[]>;
        getBlob(
            entityType: string,
            entityId: string,
        ): Promise<null | void | default>;
        getBranch(
            branchId: string,
            silentNotFoundError?: boolean,
        ): undefined | FBranch;
        getBranches(branchIds: string[], silentNotFoundError?: boolean): FBranch[];
        getNote(
            noteId: string,
            silentNotFoundError?: boolean,
        ): Promise<null | FNote>;
        getNoteFromCache(noteId: string): FNote;
        getNotes(
            noteIds: string[],
            silentNotFoundError?: boolean,
        ): Promise<FNote[]>;
        getNotesFromCache(
            noteIds: string[],
            silentNotFoundError?: boolean,
        ): FNote[];
    }
    Index

    Properties

    attachments: Record<string, FAttachment>
    attributes: Record<string, FAttribute>
    blobPromises: Record<string, null | Promise<void | default>>
    branches: Record<string, FBranch>
    notes: Record<string, FNote>

    Methods