Merge pull request #448 from swistak35/develop

Add missing type annotation
This commit is contained in:
Robert Plummer 2019-03-30 18:40:51 -04:00 committed by GitHub
commit bbfa78f080
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
src/index.d.ts vendored
View File

@ -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[];