We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b71941 commit b577644Copy full SHA for b577644
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@lad-tech/nsc-toolkit",
3
- "version": "0.5.2",
+ "version": "0.5.3",
4
"description": "Toolkit for create microservices around NATS",
5
"main": "dist/index.js",
6
"types": "./dist/types/index.d.ts",
src/interfaces.ts
@@ -25,7 +25,7 @@ export interface MethodSettings {
25
26
export interface Method {
27
settings: MethodSettings;
28
- new (): { handler: (params: unknown) => Promise<unknown> };
+ new (): { handler: (params: any) => Promise<any> };
29
}
30
31
export type ClientService<C = Client> = new (
0 commit comments