Matterway
    Preparing search index...

    Interface MwFile

    Represents a Matterway file in the SDK.

    interface MwFile {
        arrayBuffer: ArrayBuffer;
        name: string;
        size: number;
        type: string;
        webUrl?: string;
        base64: () => string;
    }
    Index

    Properties

    arrayBuffer: ArrayBuffer

    The file's data.

    name: string

    The name of the file.

    size: number

    The size of the file in bytes.

    type: string

    The type of the file.

    webUrl?: string

    The webUrl of the file.

    base64: () => string

    Returns the file's data as a string.

    Type Declaration

      • (): string
      • Returns string

        The file's data as a string.