@@ -376,7 +376,7 @@ declare const performance: Performance;
376376declare const Cloudflare : Cloudflare ;
377377declare const origin : string ;
378378declare const navigator : Navigator ;
379- type TestController = { }
379+ type TestController = { } ;
380380interface ExecutionContext {
381381 waitUntil ( promise : Promise < any > ) : void ;
382382 passThroughOnException ( ) : void ;
@@ -2272,7 +2272,7 @@ interface TraceItem {
22722272interface TraceItemAlarmEventInfo {
22732273 readonly scheduledTime : Date ;
22742274}
2275- type TraceItemCustomEventInfo = { }
2275+ type TraceItemCustomEventInfo = { } ;
22762276interface TraceItemScheduledEventInfo {
22772277 readonly scheduledTime : number ;
22782278 readonly cron : string ;
@@ -2794,8 +2794,8 @@ interface GPUBufferBindingLayout {
27942794 hasDynamicOffset ?: boolean ;
27952795 minBindingSize ?: number | bigint ;
27962796}
2797- type GPUBindGroupLayout = { }
2798- type GPUBindGroup = { }
2797+ type GPUBindGroupLayout = { } ;
2798+ type GPUBindGroup = { } ;
27992799interface GPUBindGroupDescriptor {
28002800 label ?: string ;
28012801 layout : GPUBindGroupLayout ;
@@ -2810,7 +2810,7 @@ interface GPUBufferBinding {
28102810 offset ?: number | bigint ;
28112811 size ?: number | bigint ;
28122812}
2813- type GPUSampler = { }
2813+ type GPUSampler = { } ;
28142814interface GPUSamplerDescriptor {
28152815 label ?: string ;
28162816 addressModeU ?: string ;
@@ -2831,7 +2831,7 @@ interface GPUShaderModuleDescriptor {
28312831 label ?: string ;
28322832 code : string ;
28332833}
2834- type GPUPipelineLayout = { }
2834+ type GPUPipelineLayout = { } ;
28352835interface GPUPipelineLayoutDescriptor {
28362836 label ?: string ;
28372837 bindGroupLayouts : GPUBindGroupLayout [ ] ;
@@ -2899,7 +2899,7 @@ interface GPUComputePassDescriptor {
28992899 label ?: string ;
29002900 timestampWrites ?: GPUComputePassTimestampWrites ;
29012901}
2902- type GPUQuerySet = { }
2902+ type GPUQuerySet = { } ;
29032903interface GPUQuerySetDescriptor {
29042904 label ?: string ;
29052905}
@@ -2911,7 +2911,7 @@ interface GPUComputePassTimestampWrites {
29112911interface GPUCommandBufferDescriptor {
29122912 label ?: string ;
29132913}
2914- type GPUCommandBuffer = { }
2914+ type GPUCommandBuffer = { } ;
29152915interface GPUQueue {
29162916 submit ( commandBuffers : GPUCommandBuffer [ ] ) : void ;
29172917 writeBuffer (
@@ -3027,7 +3027,7 @@ interface GPUTexture {
30273027 get format ( ) : string ;
30283028 get usage ( ) : number ;
30293029}
3030- type GPUTextureView = { }
3030+ type GPUTextureView = { } ;
30313031interface GPUTextureViewDescriptor {
30323032 label : string ;
30333033 format : string ;
@@ -3045,7 +3045,7 @@ declare abstract class GPUColorWrite {
30453045 static readonly ALPHA : number ;
30463046 static readonly ALL : number ;
30473047}
3048- type GPURenderPipeline = { }
3048+ type GPURenderPipeline = { } ;
30493049interface GPURenderPipelineDescriptor {
30503050 label ?: string ;
30513051 layout : string | GPUPipelineLayout ;
@@ -5140,7 +5140,7 @@ declare abstract class D1PreparedStatement {
51405140// but this will ensure type checking on older versions still passes.
51415141// TypeScript's interface merging will ensure our empty interface is effectively
51425142// ignored when `Disposable` is included in the standard lib.
5143- type Disposable = { }
5143+ type Disposable = { } ;
51445144/**
51455145 * An email message that can be sent from a Worker.
51465146 */
0 commit comments