ttlock-sdk-js
Version:
JavaScript port of the TTLock Android SDK
15 lines (14 loc) • 494 B
TypeScript
/// <reference types="node" />
import { CommandType } from "../../constant/CommandType";
import { Command } from "../Command";
export declare class CheckUserTimeCommand extends Command {
static COMMAND_TYPE: CommandType;
private uid?;
private startDate?;
private endDate?;
private lockFlagPos?;
protected processData(): void;
build(): Buffer;
setPayload(uid: number, startDate: string, endDate: string, lockFlagPos: number): void;
getPsFromLock(): number;
}