ts-bacnet
Version:
The BACnet protocol library written in pure JavaScript.
15 lines • 565 B
TypeScript
export declare const encode: (buffer: any, subscriberProcessId: any, monitoredObjectId: any, cancellationRequest: any, issueConfirmedNotifications: any, lifetime: any) => void;
interface value {
subscriberProcessId?: number;
monitoredObjectId?: {
type: number;
instance: number;
};
cancellationRequest?: boolean;
issueConfirmedNotifications?: boolean;
lifetime?: number;
len?: number;
}
export declare const decode: (buffer: any, offset: any, apduLen: any) => value;
export {};
//# sourceMappingURL=subscribe-cov.d.ts.map