koishi-plugin-qxgl-satori 0.0.1 → 0.0.3
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 +3 -2
- package/lib/index.js +893 -793
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
declare var __defProp: <T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>) => T;
|
|
2
2
|
declare var __name: (target: any, value: any) => any;
|
|
3
|
-
declare var koishi: any;
|
|
4
3
|
declare var Schema: any, Logger: any, h: any;
|
|
5
4
|
declare var logger: any;
|
|
6
5
|
declare var inject: string[];
|
|
7
6
|
declare var pluginName: string;
|
|
8
7
|
declare var fs: any;
|
|
9
|
-
declare var
|
|
8
|
+
declare var fsSync: any;
|
|
10
9
|
declare var path: any;
|
|
11
10
|
declare var pathToFileURL: any;
|
|
12
11
|
declare var Config: any;
|
|
13
12
|
declare var usage: string;
|
|
14
13
|
declare function apply(ctx: any, config: any): Promise<void>;
|
|
14
|
+
declare function formatDate(date: any): string;
|
|
15
|
+
declare function escapeRegExp(string: any): any;
|