linXiv frontend (TS/JS)
    Preparing search index...

    Type Alias PaperDetails

    type PaperDetails = {
        authors: string[];
        categories: string[];
        category: string | null;
        comment: string | null;
        doi: string | null;
        downloaded_source: boolean;
        has_pdf: boolean;
        journal_ref: string | null;
        paper_id: number;
        pdf_path: string | null;
        published: string | null;
        source: string | null;
        source_fk: number;
        source_id: string;
        summary: string | null;
        tags: string[];
        title: string;
        updated: string | null;
        url: string | null;
        version: number;
    }
    Index
    authors: string[]
    categories: string[]
    category: string | null
    comment: string | null
    doi: string | null
    downloaded_source: boolean
    has_pdf: boolean
    journal_ref: string | null
    paper_id: number
    pdf_path: string | null
    published: string | null
    source: string | null
    source_fk: number

    Never null: PAPER.SOURCE_FK is NOT NULL and every reader selects from the papers view.

    source_id: string
    summary: string | null
    tags: string[]
    title: string
    updated: string | null
    url: string | null
    version: number