File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/cloudflare/src/api Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -65,12 +65,12 @@ export function getCloudflareContext<
65
65
export function getCloudflareContext <
66
66
CfProperties extends Record < string , unknown > = IncomingRequestCfProperties ,
67
67
Context = ExecutionContext ,
68
- > ( options ?: { async ? : false } ) : CloudflareContext < CfProperties , Context > ;
68
+ > ( options ?: { async : false } ) : CloudflareContext < CfProperties , Context > ;
69
69
export function getCloudflareContext <
70
70
CfProperties extends Record < string , unknown > = IncomingRequestCfProperties ,
71
71
Context = ExecutionContext ,
72
72
> (
73
- options : GetCloudflareContextOptions = { }
73
+ options : GetCloudflareContextOptions = { async : false }
74
74
) : CloudflareContext < CfProperties , Context > | Promise < CloudflareContext < CfProperties , Context > > {
75
75
const global = globalThis as InternalGlobalThis < CfProperties , Context > ;
76
76
You can’t perform that action at this time.
0 commit comments