UNPKG

ttlock-sdk-js

Version:

JavaScript port of the TTLock Android SDK

12 lines (11 loc) 363 B
/// <reference types="node" /> import { CommandType } from "../../constant/CommandType"; import { Command } from "../Command"; export declare class AESKeyCommand extends Command { static COMMAND_TYPE: CommandType; private aesKey?; protected processData(): void; build(): Buffer; setAESKey(key: Buffer): void; getAESKey(): Buffer | void; }