From 17026a9a8b2702426daf035cab83c353010bae8a Mon Sep 17 00:00:00 2001 From: Greggman Date: Mon, 30 Oct 2023 20:59:05 +0900 Subject: [PATCH] Fix any in bitonicSory example (#314) 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;