Skip to content

Commit d6ed04d

Browse files
fentontaylorhuck-hgraph
authored andcommitted
Convert EngineTypes.RequestParams to Generic
1 parent edb6e5f commit d6ed04d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/types/src/sign-client/engine.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ export declare namespace EngineTypes {
8383
topic: string;
8484
}
8585

86-
interface RequestParams {
86+
interface RequestParams<T = any> {
8787
topic: string;
8888
request: {
8989
method: string;
90-
params: any;
90+
params: T;
9191
};
9292
chainId: string;
9393
expiry?: number;

0 commit comments

Comments
 (0)