Commit 6ea8749f authored by 邓晓峰's avatar 邓晓峰

fix: 修复format function undefined

parent 58088be2
module.exports = { module.exports = {
extends: [require.resolve('@umijs/fabric/dist/eslint')], extends: [require.resolve('@umijs/fabric/dist/eslint')],
rules: { rules: {
'@typescript-eslint/prefer-interface': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/array-type': ['error', { default: 'array-simple' }],
'no-return-assign': 0, 'no-return-assign': 0,
semi: ['error', 'always'], semi: ['error', 'always'],
'no-confusing-arrow': 0, 'no-confusing-arrow': 0,
...@@ -15,4 +12,4 @@ module.exports = { ...@@ -15,4 +12,4 @@ module.exports = {
'no-plusplus': 0, 'no-plusplus': 0,
}, },
}; };
import _typeof from "@babel/runtime/helpers/esm/typeof"; import _typeof from "@babel/runtime/helpers/esm/typeof";
import ClientImplementation from './ClientImplementation'; import ClientImplementation from './ClientImplementation';
import { ERROR } from './consts'; import { ERROR } from './consts';
import { validate } from './utils'; import { validate, format } from './utils';
/* eslint-disable */ /* eslint-disable */
var Client = function Client(host, port, path, clientId) { var Client = function Client(host, port, path, clientId) {
......
This diff is collapsed.
import ClientImplementation from './ClientImplementation'; import ClientImplementation from './ClientImplementation';
import { ERROR } from './consts'; import { ERROR } from './consts';
import { validate, format } from './utils'; import { validate, format } from './utils';
/* eslint-disable */ /* eslint-disable */
const Client = function (host, port, path, clientId) { const Client = function (host, port, path, clientId) {
var uri; var uri;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment