Skip to content

Commit

Permalink
Fix any in bitonicSory example
Browse files Browse the repository at this point in the history
This `any` is showing up in every lint run on every PR, even
those not related to this sample.
  • Loading branch information
greggman committed Oct 30, 2023
1 parent f2eaf77 commit e4fc25e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/sample/bitonicSort/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,10 @@ export const SampleInitFactoryWebGPU = async (

export abstract class Base2DRendererClass {
abstract switchBindGroup(name: string): void;
abstract startRun(commandEncoder: GPUCommandEncoder, ...args: any[]): void;
abstract startRun(
commandEncoder: GPUCommandEncoder,
...args: unknown[]
): void;
renderPassDescriptor: GPURenderPassDescriptor;
pipeline: GPURenderPipeline;
bindGroupMap: Record<string, GPUBindGroup>;
Expand Down

0 comments on commit e4fc25e

Please sign in to comment.