MobX Lark
    Preparing search index...

    Interface Document

    interface Document {
        cover: Record<"offset_ratio_x" | "offset_ratio_y", number> & {
            token: string;
        };
        display_setting: Record<
            `show_${| "authors"
            | `${"comment"
            | "like"}_count`
            | "create_time"
            | "pv"
            | "uv"}`,
            boolean,
        >;
        document_id: string;
        revision_id: number;
        title: string;
    }

    Hierarchy

    • Record<"document_id" | "title", string>
      • Document
    Index

    Properties

    cover: Record<"offset_ratio_x" | "offset_ratio_y", number> & { token: string }
    display_setting: Record<
        `show_${| "authors"
        | `${"comment"
        | "like"}_count`
        | "create_time"
        | "pv"
        | "uv"}`,
        boolean,
    >
    document_id: string
    revision_id: number
    title: string