commandkit 0.1.11-dev.20250215105847 → 0.1.11-dev.20250215125548
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/dist/index.d.mts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +13 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1214,6 +1214,10 @@ declare class Context<ExecutionMode extends CommandExecutionMode = CommandExecut
|
|
|
1214
1214
|
* The message that triggered the command.
|
|
1215
1215
|
*/
|
|
1216
1216
|
readonly message: ContextParameters<ExecutionMode>['message'];
|
|
1217
|
+
/**
|
|
1218
|
+
* The client instance.
|
|
1219
|
+
*/
|
|
1220
|
+
readonly client: Client;
|
|
1217
1221
|
private _locale;
|
|
1218
1222
|
/**
|
|
1219
1223
|
* Creates a new command context.
|
|
@@ -1712,7 +1716,9 @@ declare class DefaultLogger implements ILogger {
|
|
|
1712
1716
|
}, stderr?: NodeJS.WriteStream & {
|
|
1713
1717
|
fd: 2;
|
|
1714
1718
|
});
|
|
1719
|
+
private _formatTime;
|
|
1715
1720
|
private _getContext;
|
|
1721
|
+
private _getLevelLabel;
|
|
1716
1722
|
private _getPrefix;
|
|
1717
1723
|
private _log;
|
|
1718
1724
|
debug(...args: any[]): void;
|
package/dist/index.d.ts
CHANGED
|
@@ -1214,6 +1214,10 @@ declare class Context<ExecutionMode extends CommandExecutionMode = CommandExecut
|
|
|
1214
1214
|
* The message that triggered the command.
|
|
1215
1215
|
*/
|
|
1216
1216
|
readonly message: ContextParameters<ExecutionMode>['message'];
|
|
1217
|
+
/**
|
|
1218
|
+
* The client instance.
|
|
1219
|
+
*/
|
|
1220
|
+
readonly client: Client;
|
|
1217
1221
|
private _locale;
|
|
1218
1222
|
/**
|
|
1219
1223
|
* Creates a new command context.
|
|
@@ -1712,7 +1716,9 @@ declare class DefaultLogger implements ILogger {
|
|
|
1712
1716
|
}, stderr?: NodeJS.WriteStream & {
|
|
1713
1717
|
fd: 2;
|
|
1714
1718
|
});
|
|
1719
|
+
private _formatTime;
|
|
1715
1720
|
private _getContext;
|
|
1721
|
+
private _getLevelLabel;
|
|
1716
1722
|
private _getPrefix;
|
|
1717
1723
|
private _log;
|
|
1718
1724
|
debug(...args: any[]): void;
|