atem-connection
Version:
Typescript Node.js library for connecting with an ATEM switcher.
10 lines • 384 B
TypeScript
/// <reference types="node" />
import type { ProtocolVersion } from '../enums';
import type { ISerializableCommand } from '../commands';
export declare class PacketBuilder {
#private;
constructor(maxPacketSize: number, protocolVersion: ProtocolVersion);
addCommand(cmd: ISerializableCommand): void;
getPackets(): Buffer[];
}
//# sourceMappingURL=packetBuilder.d.ts.map