Skip to content

Commit d0f2074

Browse files
committed
Set props optional on execution context
1 parent c3a43f6 commit d0f2074

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@openworkers/workers-types",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"description": "TypeScript types for the OpenWorkers runtime",
55
"license": "MIT",
66
"repository": {
@@ -22,7 +22,7 @@
2222
"format": "prettier --write ."
2323
},
2424
"peerDependencies": {
25-
"typescript": "^5"
25+
"typescript": "^5.9.3"
2626
},
2727
"publishConfig": {
2828
"access": "public",

types/workers.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ declare global {
4848
* For Hono/Cloudflare Workers compatibility.
4949
* @deprecated Not implemented in OpenWorkers
5050
*/
51-
props: never;
51+
props?: never;
5252
}
5353

5454
/**

0 commit comments

Comments
 (0)