DataURL: {
    fileName: string;
    extension: string;
    mimeType: string;
    isImage: boolean;
    url: string;
}

Represents the Data-URL of a file

Type declaration

  • fileName: string

    Filename of the file

  • extension: string

    Extension of the file, can be empty.

  • mimeType: string

    MIME-type of the file

  • isImage: boolean

    Is set to true when the mimeType represents an image, otherwise false.

  • url: string

    Data-URL of the file