interface Item {
    class?: string;
    description?: string;
    fixed?: boolean;
    key: string;
    label: string;
    payload: {
        file: null | Doc;
    };
    temporary?: boolean;
}

Hierarchy

Properties

class?: string
description?: string
fixed?: boolean
key: string
label: string
payload: {
    file: null | Doc;
}

Type declaration

  • file: null | Doc
temporary?: boolean

Generated using TypeDoc