@trezor/connect
Version:
High-level javascript interface for Trezor hardware wallet.
16 lines (15 loc) • 701 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.RequestLoginSchema = exports.LoginChallenge = void 0;
const schema_utils_1 = require("@trezor/schema-utils");
exports.LoginChallenge = schema_utils_1.Type.Object({
challengeHidden: schema_utils_1.Type.String(),
challengeVisual: schema_utils_1.Type.String(),
origin: schema_utils_1.Type.Optional(schema_utils_1.Type.String()),
asyncChallenge: schema_utils_1.Type.Optional(schema_utils_1.Type.Undefined()),
callback: schema_utils_1.Type.Optional(schema_utils_1.Type.Undefined())
});
exports.RequestLoginSchema = schema_utils_1.Type.Union([exports.LoginChallenge]);
//# sourceMappingURL=requestLogin.js.map