UNPKG

parsec-sdk

Version:

UNOFFICIAL and WIP JavaScript/TypeScript SDK for Parsec remote desktop.

15 lines 466 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TFARequiredError = void 0; /** * Error thrown if TFA code is required to authenticate with _personal_ strategy */ class TFARequiredError extends Error { tfaType; constructor(tfaType) { super('You need to provide an authentication code.'); this.tfaType = tfaType; } } exports.TFARequiredError = TFARequiredError; //# sourceMappingURL=TFARequired.js.map