@homedev/framework 1.0.11 → 1.0.12
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.ts +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -636,8 +636,7 @@ declare global {
|
|
|
636
636
|
var defined: <T>(value: T | undefined | null, msg?: string) => T;
|
|
637
637
|
var createAsyncFunction: (body: string, args?: Record<string, any>, thisArg?: any) => AsyncFunction;
|
|
638
638
|
var runAsyncFunction: <T = void>(options: RunAsyncFunctionOptions) => Promise<T>;
|
|
639
|
-
|
|
640
|
-
}
|
|
639
|
+
type AsyncEmitter<T extends object> = AsyncEmitterClass<T>;
|
|
641
640
|
}
|
|
642
641
|
|
|
643
642
|
declare global {
|