From bc71a105a540561f568c1cb2cd5051b91881b3b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20=C5=81asocha?= Date: Sat, 30 Mar 2019 19:16:42 +0100 Subject: [PATCH] Add missing type annotation --- src/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.d.ts b/src/index.d.ts index 47b081f0..0d6385d2 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -76,7 +76,7 @@ export class Kernel { static isContextMatch(context: any): boolean; static nativeFunctionArgumentTypes(source: string): IArgumentTypes; static nativeFunctionReturnType(source: string): string; - static destroyContext(context: any); + static destroyContext(context: any): void; static features: IKernelFeatures; source: string | object; output: number[];