diff --git a/.eslintrc b/.eslintrc index a9a557ccb..29c0b0a97 100644 --- a/.eslintrc +++ b/.eslintrc @@ -16,6 +16,15 @@ }, "plugins": ["@typescript-eslint"], "rules": { + "no-unused-vars": "off", + "@typescript-eslint/no-unused-vars": [ + "error", + { + "vars": "all", + "args": "none", + "ignoreRestSiblings": true + } + ], // 声明 "no-use-before-define": "error", //禁止定义前使用 diff --git a/typescript/index.ts b/typescript/index.ts index e69de29bb..ec8222707 100644 --- a/typescript/index.ts +++ b/typescript/index.ts @@ -0,0 +1,11 @@ +import { _addI18n, _i18nText } from "./core/i18n"; +import { _OB } from "./core/ob"; + +export declare module BI { + namespace i18n { + const addI18n: _addI18n; + const i18nText: _i18nText; + } + + const OB: _OB; +}