From a6934ab04183ca5e840aeacee72aaeb45c0f8d1d Mon Sep 17 00:00:00 2001 From: LongYinan Date: Tue, 9 Jan 2024 00:58:41 +0800 Subject: [PATCH] chore: fix generated .d.ts file --- examples/napi/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/examples/napi/index.d.ts b/examples/napi/index.d.ts index c173a245..aeaafcc3 100644 --- a/examples/napi/index.d.ts +++ b/examples/napi/index.d.ts @@ -498,6 +498,10 @@ export function runScript(script: string): unknown export function setSymbolInObj(symbol: symbol): object +export interface Shared { + value: number +} + export const enum Status { Pristine = 'Pristine', Loading = 'Loading',