Skip to content

Commit

Permalink
Merge pull request #32 from bugwheels94/beta
Browse files Browse the repository at this point in the history
Beta
  • Loading branch information
bugwheels94 authored Sep 18, 2022
2 parents 8313431 + 90ea26e commit f0bb15d
Show file tree
Hide file tree
Showing 3 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": "restify-websocket",
"version": "0.0.0-development",
"version": "1.0.0",
"description": "Websockets on steroid",
"module": "dist/node/index.js",
"main": "dist/node/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/receiver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export type ReceiverRoute = {
};
export type ReceiverRequest<P extends object = object> = {} & MatchResult<P>;

type Params = Record<string, string | number>;
type Params = Record<string, string>;

export class Receiver {
store: ReceiverStore = {
Expand Down
2 changes: 1 addition & 1 deletion src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export type Route = {
callbacks: RouterCallback[];
};

type Params = Record<string, string | number>;
type Params = Record<string, string>;
export class Router {
store: RouterStore = {
get: [],
Expand Down

0 comments on commit f0bb15d

Please sign in to comment.