From e4fc25eb89c1ecc04608a2efce899ebbe9112e2b Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Mon, 30 Oct 2023 10:38:43 +0900 Subject: [PATCH] Fix any in bitonicSory example This `any` is showing up in every lint run on every PR, even those not related to this sample. --- src/sample/bitonicSort/utils.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/sample/bitonicSort/utils.ts b/src/sample/bitonicSort/utils.ts index 1c2dc65c..ce1bd02e 100644 --- a/src/sample/bitonicSort/utils.ts +++ b/src/sample/bitonicSort/utils.ts @@ -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;