@logseq/libs
    Preparing search index...

    Interface IUIProxy

    interface IUIProxy {
        checkSlotValid: (slot: string) => Promise<boolean>;
        closeMsg: (key: string) => void;
        queryElementById: (id: string) => Promise<string | boolean>;
        queryElementRect: (selector: string) => Promise<DOMRectReadOnly>;
        resolveThemeCssPropsVals: (
            props: string | string[],
        ) => Promise<Record<string, string>>;
        showMsg: (
            content: string,
            status?: string,
            opts?: Partial<UIMsgOptions>,
        ) => Promise<string>;
    }
    Index

    Properties

    checkSlotValid: (slot: string) => Promise<boolean>
    closeMsg: (key: string) => void
    queryElementById: (id: string) => Promise<string | boolean>
    queryElementRect: (selector: string) => Promise<DOMRectReadOnly>
    resolveThemeCssPropsVals: (
        props: string | string[],
    ) => Promise<Record<string, string>>
    showMsg: (
        content: string,
        status?: string,
        opts?: Partial<UIMsgOptions>,
    ) => Promise<string>