Interface WriteParams

    interface WriteParams {
        data?: string | Blob | BufferSource;
        position?: number;
        size?: number;
        type: WriteCommandType;
    }

    Properties

    data?: string | Blob | BufferSource
    position?: number
    size?: number