@balte/emberplus-connection
Version:
Javascript implementation of the Ember+ automation protocol
31 lines (30 loc) • 796 B
TypeScript
export { StreamDescription, StreamFormat };
declare enum StreamFormat {
UInt8 = "UInt8",
UInt16BE = "UInt16BE",
UInt16LE = "UInt16LE",
UInt32BE = "UInt32BE",
UInt32LE = "UInt32LE",
UInt64BE = "UInt64BE",
UInt64LE = "UInt64LE",
Int8 = "Int8",
Int16BE = "Int16BE",
Int16LE = "Int16LE",
Int32BE = "Int32BE",
Int32LE = "Int32LE",
Int64BE = "Int64BE",
Int64LE = "Int64LE",
Float32BE = "Float32BE",
Float32LE = "Float32LE",
Float64BE = "Float64BE",
Float64LE = "Float64LE"
}
interface StreamDescription {
format: StreamFormat;
offset: number;
}
export declare class StreamDescriptionImpl implements StreamDescription {
format: StreamFormat;
offset: number;
constructor(format: StreamFormat, offset: number);
}