moost 0.3.9 → 0.3.11
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.cjs +1045 -1097
- package/dist/index.d.ts +3 -1
- package/dist/index.mjs +1041 -1093
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -191,7 +191,7 @@ export declare class InterceptorHandler {
|
|
|
191
191
|
response?: unknown;
|
|
192
192
|
responseOverwritten: boolean;
|
|
193
193
|
replyFn(reply: unknown): void;
|
|
194
|
-
init(): Promise<
|
|
194
|
+
init(): Promise<{} | null | undefined>;
|
|
195
195
|
fireBefore(response: unknown): Promise<unknown>;
|
|
196
196
|
fireAfter(response: unknown): Promise<unknown>;
|
|
197
197
|
}
|
|
@@ -595,6 +595,8 @@ export declare enum TPipePriority {
|
|
|
595
595
|
AFTER_VALIDATE = 8
|
|
596
596
|
}
|
|
597
597
|
|
|
598
|
+
export { TProvideRegistry }
|
|
599
|
+
|
|
598
600
|
export declare function useControllerContext<T extends object>(): {
|
|
599
601
|
instantiate: <T_1>(c: TClassConstructor<T_1>) => Promise<T_1>;
|
|
600
602
|
getController: () => T;
|