commandkit 0.1.6-dev.20231113064545 → 0.1.6-dev.20231113071041
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -156,6 +156,10 @@ type CommandKitButtonBuilderInteractionCollectorDispatchContextData = {
|
|
|
156
156
|
* The message to listen for button interactions on.
|
|
157
157
|
*/
|
|
158
158
|
message: Message;
|
|
159
|
+
/**
|
|
160
|
+
* The duration (in ms) that the collector should run for.
|
|
161
|
+
*/
|
|
162
|
+
time?: number;
|
|
159
163
|
/**
|
|
160
164
|
* If the collector should automatically reset the timer when a button is clicked.
|
|
161
165
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -156,6 +156,10 @@ type CommandKitButtonBuilderInteractionCollectorDispatchContextData = {
|
|
|
156
156
|
* The message to listen for button interactions on.
|
|
157
157
|
*/
|
|
158
158
|
message: Message;
|
|
159
|
+
/**
|
|
160
|
+
* The duration (in ms) that the collector should run for.
|
|
161
|
+
*/
|
|
162
|
+
time?: number;
|
|
159
163
|
/**
|
|
160
164
|
* If the collector should automatically reset the timer when a button is clicked.
|
|
161
165
|
*/
|
package/package.json
CHANGED