Interface WriteParams

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

Properties

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