@digitalpersona/devices
Version:
DigitalPersona Security Devices support library
28 lines (27 loc) • 536 B
TypeScript
/**@internal
*
*/
export declare class Command {
readonly Method: number;
readonly Parameters?: string;
constructor(method: number, parameters?: string);
}
/**@internal
*
*/
export declare class Request {
readonly command: Command;
sent: boolean;
resolve: Function;
reject: Function;
timer?: number;
constructor(command: Command);
}
/**@internal
*
*/
export interface Response {
readonly Method: number;
readonly Result: number;
readonly Data?: string;
}