From 516e94f9a6ba1f32d82fb427b9795821d5ecee4a Mon Sep 17 00:00:00 2001 From: CountBleck Date: Fri, 18 Apr 2025 13:32:03 -0700 Subject: [PATCH] Remove erroneous `declare` for `inline.always` It was supposed to be `export`. Silly me. Fixes #2915. --- std/assembly/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/assembly/index.d.ts b/std/assembly/index.d.ts index c2712dae92..9d629ccd10 100644 --- a/std/assembly/index.d.ts +++ b/std/assembly/index.d.ts @@ -2695,7 +2695,7 @@ declare function final(constructor: Constructor): void; declare function inline(...args: any[]): any; declare namespace inline { /** Explicitly requests inlined function calls on the provided expression wherever possible. */ - declare function always(value: T): T; + export function always(value: T): T; } /** Annotates a method, function or constant global as unsafe. */