UNPKG

@etsoo/smarterp-core

Version:
22 lines (21 loc) 614 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ApiProvider = exports.ApiOutput = void 0; /** * API output type * API输出类型 */ var ApiOutput; (function (ApiOutput) { ApiOutput[ApiOutput["JSON"] = 0] = "JSON"; ApiOutput[ApiOutput["XML"] = 1] = "XML"; })(ApiOutput || (exports.ApiOutput = ApiOutput = {})); /** * API provider * 接口供应商 */ var ApiProvider; (function (ApiProvider) { ApiProvider[ApiProvider["Google"] = 0] = "Google"; ApiProvider[ApiProvider["Baidu"] = 1] = "Baidu"; })(ApiProvider || (exports.ApiProvider = ApiProvider = {}));