23 lines
970 B
JavaScript
23 lines
970 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const tslib_1 = require("tslib");
|
|
const accountOper_1 = tslib_1.__importDefault(require("./accountOper"));
|
|
const pay_1 = tslib_1.__importDefault(require("./pay"));
|
|
const order_1 = tslib_1.__importDefault(require("./order"));
|
|
const application_1 = tslib_1.__importDefault(require("./application"));
|
|
const offlineAccount_1 = tslib_1.__importDefault(require("./offlineAccount"));
|
|
const wpProduct_1 = tslib_1.__importDefault(require("./wpProduct"));
|
|
const abstractChecker_1 = tslib_1.__importDefault(require("./abstractChecker"));
|
|
const withdrawAccount_1 = tslib_1.__importDefault(require("./withdrawAccount"));
|
|
const checkers = [
|
|
...withdrawAccount_1.default,
|
|
...abstractChecker_1.default,
|
|
...accountOper_1.default,
|
|
...pay_1.default,
|
|
...order_1.default,
|
|
...application_1.default,
|
|
...offlineAccount_1.default,
|
|
...wpProduct_1.default,
|
|
];
|
|
exports.default = checkers;
|