zigbee-herdsman-zigate
Version:
An open source ZigBee gateway solution with node.js.
18 lines • 598 B
TypeScript
/// <reference types="node" />
import { ZGCommand, ZGCommandCode } from '../command';
export interface PermitJoinPayload {
targetShortAddress?: number;
interval?: number;
TCsignificance?: number;
}
export declare class ZGPermitJoinCommand implements ZGCommand {
code: ZGCommandCode;
label: string;
payload: PermitJoinPayload;
defaultPayload: PermitJoinPayload;
constructor(code: ZGCommandCode, payload: PermitJoinPayload | undefined);
getCode(): ZGCommandCode;
getLabel(): string;
getBufferedPayload(): Buffer;
}
//# sourceMappingURL=permit-join.d.ts.map