Interface IFile

interface IFile {
    meta?: Meta;
    name: string;
    publish?: boolean;
    size?: number;
    type?: string;
    [key: string]: any;
}

Implemented by

Indexable

  • [key: string]: any

Properties

meta?: Meta
name: string
publish?: boolean
size?: number
type?: string