Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"globals": "^16.3.0",
"html-minifier-terser": "^7.2.0",
"nodejs-latest-linker": "^1.9.0",
"prettier": "^3.6.2",
"prettier": "^3.7.4",
"tsx": "^4.20.6",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
Expand Down
16 changes: 8 additions & 8 deletions worker-configuration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1654,8 +1654,10 @@ declare var Request: {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request)
*/
interface Request<CfHostMetadata = unknown, Cf = CfProperties<CfHostMetadata>>
extends Body {
interface Request<
CfHostMetadata = unknown,
Cf = CfProperties<CfHostMetadata>,
> extends Body {
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/clone) */
clone(): Request<CfHostMetadata, Cf>;
/**
Expand Down Expand Up @@ -2448,9 +2450,7 @@ interface TextDecoderStreamTextDecoderStreamInit {
*
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy)
*/
declare class ByteLengthQueuingStrategy
implements QueuingStrategy<ArrayBufferView>
{
declare class ByteLengthQueuingStrategy implements QueuingStrategy<ArrayBufferView> {
constructor(init: QueuingStrategyInit);
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy/highWaterMark) */
get highWaterMark(): number;
Expand Down Expand Up @@ -6575,8 +6575,7 @@ interface IncomingRequestCfPropertiesBotManagement {
*/
clientTrustScore: number;
}
interface IncomingRequestCfPropertiesBotManagementEnterprise
extends IncomingRequestCfPropertiesBotManagement {
interface IncomingRequestCfPropertiesBotManagementEnterprise extends IncomingRequestCfPropertiesBotManagement {
/**
* Results of Cloudflare's Bot Management analysis
*/
Expand Down Expand Up @@ -7857,7 +7856,8 @@ declare module 'cloudflare:workers' {
export abstract class WorkflowEntrypoint<
Env = unknown,
T extends Rpc.Serializable<T> | unknown = unknown,
> implements Rpc.WorkflowEntrypointBranded
>
implements Rpc.WorkflowEntrypointBranded
{
[Rpc.__WORKFLOW_ENTRYPOINT_BRAND]: never;
protected ctx: ExecutionContext;
Expand Down