koishi-plugin-cocoyyy-console 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +0 -1
- package/lib/index.js +0 -3
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Context, Logger, Schema } from 'koishi';
|
|
2
2
|
import * as my_config from './utils/config';
|
|
3
3
|
export declare const name = "cocoyyy-console";
|
|
4
|
-
export declare const inject: string[];
|
|
5
4
|
export interface Config {
|
|
6
5
|
function_config?: my_config.FunctionConfig;
|
|
7
6
|
mysql_config?: my_config.MysqlConfig;
|
package/lib/index.js
CHANGED
|
@@ -22,7 +22,6 @@ var src_exports = {};
|
|
|
22
22
|
__export(src_exports, {
|
|
23
23
|
Config: () => Config,
|
|
24
24
|
apply: () => apply,
|
|
25
|
-
inject: () => inject,
|
|
26
25
|
logger: () => logger,
|
|
27
26
|
name: () => name,
|
|
28
27
|
savePath: () => savePath
|
|
@@ -868,7 +867,6 @@ __name(registerRbqMiddleware, "registerRbqMiddleware");
|
|
|
868
867
|
|
|
869
868
|
// src/index.ts
|
|
870
869
|
var name = "cocoyyy-console";
|
|
871
|
-
var inject = ["sequelize", "mysql2"];
|
|
872
870
|
var Config = import_koishi9.Schema.object({
|
|
873
871
|
function_config: FunctionConfigSchema.description("功能开关配置"),
|
|
874
872
|
mysql_config: MysqlConfigSchema.description("MySQL 数据库配置"),
|
|
@@ -901,7 +899,6 @@ __name(apply, "apply");
|
|
|
901
899
|
0 && (module.exports = {
|
|
902
900
|
Config,
|
|
903
901
|
apply,
|
|
904
|
-
inject,
|
|
905
902
|
logger,
|
|
906
903
|
name,
|
|
907
904
|
savePath
|