Skip to content

Commit

Permalink
Merge pull request #10 from FleekHQ/develop
Browse files Browse the repository at this point in the history
Release Fix Type
  • Loading branch information
gpuente authored May 13, 2021
2 parents f97a3b8 + a8047bc commit 54add3d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fleekhq/browser-rpc",
"version": "2.0.0",
"version": "2.0.1",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"jsnext:main": "dist/esm/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export type HandlerProps = {
export type Handler = (props: HandlerProps, ...args: any[]) => any;

export type CallConfigObject = {
timeout: number;
target: string;
timeout?: number;
target?: string;
};

export type ValidationMessageObject = {
Expand Down

0 comments on commit 54add3d

Please sign in to comment.