shelving 1.111.0 → 1.111.1
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/package.json +1 -1
- package/util/start.d.ts +1 -1
package/package.json
CHANGED
package/util/start.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { Disposable } from "./dispose.js";
|
|
2
2
|
import type { Arguments } from "./function.js";
|
|
3
3
|
/** Callback function that starts something with multiple values and returns an optional stop callback. */
|
|
4
|
-
export type Start<T extends Arguments = []> = (...values: T) => Stop |
|
|
4
|
+
export type Start<T extends Arguments = []> = (...values: T) => Stop | void;
|
|
5
5
|
/** Callback function that stops something. */
|
|
6
6
|
export type Stop = () => void;
|
|
7
7
|
/**
|