@broxus/tvm-connect
Version:
Nekoton-compatible wallets connector.
13 lines (12 loc) • 349 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExternalApp = void 0;
const mobx_1 = require("mobx");
const types_1 = require("../types");
class ExternalApp {
type = types_1.ConnectionType.EXTERNAL_APP;
constructor() {
(0, mobx_1.makeObservable)(this);
}
}
exports.ExternalApp = ExternalApp;