We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b41b009 commit 1613244Copy full SHA for 1613244
src/@types/gql-ctx.d.ts
@@ -1,4 +1,3 @@
1
declare namespace Gql {
2
- export type WxtQueueCtx =
3
- (typeof import("../dependencies"))["dependencies"]["registrations"];
+ export type WxtQueueCtx = import("../dependencies").Dependencies;
4
}
src/dependencies.ts
@@ -23,3 +23,5 @@ export const container = createIocContainer()
23
[ExtensionStoreName.EdgeExtensions]: deps.edgeAddonStore,
24
}) satisfies ExtensionStores,
25
);
26
+
27
+export type Dependencies = typeof container.registrations;
0 commit comments