Properties of a BufferLayoutParseTask.

interface IBufferLayoutParseTask {
    endian?: null | Endian;
    offset?: null | number;
    type?: null | BufferParseType;
}

Implemented by

Properties

Properties

endian?: null | Endian

The endianness of the stored value.

offset?: null | number

The buffer offset to start deserializing from.

type?: null | BufferParseType

The type of value to deserialize.