From 2685c2788a3895a6f6aecca81be6d6f702ce5ebf Mon Sep 17 00:00:00 2001 From: Zeke Foppa Date: Wed, 19 Nov 2025 09:58:26 -0800 Subject: [PATCH] [bfops/fix-typo]: anyonymousView -> anonymousView --- crates/bindings-typescript/src/lib/schema.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/bindings-typescript/src/lib/schema.ts b/crates/bindings-typescript/src/lib/schema.ts index 07c1b513d84..4f48ebabdfc 100644 --- a/crates/bindings-typescript/src/lib/schema.ts +++ b/crates/bindings-typescript/src/lib/schema.ts @@ -514,7 +514,7 @@ class Schema { // } // } - anyonymousView( + anonymousView( opts: ViewOpts, ret: Ret, fn: AnonymousViewFn @@ -523,18 +523,18 @@ class Schema { } // TODO: re-enable once parameterized views are supported in SQL - // anyonymousView( + // anonymousView( // opts: ViewOpts, // ret: Ret, // fn: AnonymousViewFn // ): void; - // anyonymousView( + // anonymousView( // opts: ViewOpts, // params: Params, // ret: Ret, // fn: AnonymousViewFn // ): void; - // anyonymousView( + // anonymousView( // opts: ViewOpts, // paramsOrRet: Ret | Params, // retOrFn: AnonymousViewFn | Ret,