Skip to content

Commit

Permalink
update dep: typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
FredKSchott committed Mar 10, 2022
1 parent e3ef7dc commit 20f9da9
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 44 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,6 @@
"pretty-bytes": "^6.0.0",
"tiny-glob": "^0.2.9",
"turbo": "^1.1.5",
"typescript": "4.5.2"
"typescript": "~4.6.2"
}
}
2 changes: 1 addition & 1 deletion packages/webapi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^15.12.2",
"@types/node": "^14.0.0",
"@ungap/structured-clone": "^0.3.4",
"abort-controller": "^3.0.0",
"event-target-shim": "^6.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/webapi/src/lib/Timeout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function setTimeout<
>(callback: TFunc, delay = 0, ...args: TArgs): number {
const func = _.__function_bind(callback, globalThis)
const tick = ++INTERNAL.tick
const timeout = nodeSetTimeout(func, delay, ...args)
const timeout = nodeSetTimeout(func as any, delay, ...args)

INTERNAL.pool.set(tick, timeout)

Expand Down
80 changes: 39 additions & 41 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 20f9da9

Please sign in to comment.