MEUIUploadFile: {
    dataType: string;
    dataUrl: string;
    fileName: string;
    isBase64: boolean;
    lastMod: string;
    mesType: boolean;
    originalData: string;
    size: number;
}

The file upload result

Type declaration

  • dataType: string

    The data type of the uploaded file.

  • dataUrl: string

    The data URI of the uploaded file. Base 64 for binary data and plain text for text data.

  • fileName: string

    The file name of the uploaded file.

  • isBase64: boolean

    Flag indicating if the upload is base 64 encoded.

  • lastMod: string

    The last modification timestamp as a string.

  • mesType: boolean

    Flag indicating this object is a MegaEdit scripting type. Will be true for objects created by this component.

  • originalData: string

    The unmodified data. Can be used if dataUrl is not correctly handled by the upload process.

  • size: number

    The size of the file in bytes.

Generated using TypeDoc