Comparing version 1.0.11 to 1.0.12
import LuaWasm from './luawasm'; | ||
export declare class Lua extends LuaWasm { | ||
private readonly functionRegistry; | ||
private L; | ||
@@ -4,0 +5,0 @@ constructor(); |
@@ -12,3 +12,2 @@ /// <reference types="emscripten" /> | ||
static ensureInitialization(customName?: string): Promise<void>; | ||
protected static throwIfUninitialized(): void; | ||
protected static luaL_newstate: () => LuaState; | ||
@@ -37,4 +36,7 @@ protected static luaL_openlibs: (L: LuaState) => void; | ||
protected static lua_settable: (L: LuaState, idx: number) => void; | ||
protected static lua_callk: (L: LuaState, nargs: number, nresults: number, ctx: number, func: number) => void; | ||
protected static clua_call: (L: LuaState, nargs: number, nresults: number) => void; | ||
protected static clua_pushcfunction: (L: LuaState, cfunction: number) => void; | ||
protected static luaL_ref: (L: LuaState, table: number) => number; | ||
protected static luaL_unref: (L: LuaState, table: number, ref: number) => void; | ||
protected static lua_rawgeti: (L: LuaState, idx: number, ref: number) => number; | ||
protected static lua_close: (L: LuaState) => void; | ||
@@ -41,0 +43,0 @@ private static bindWrappedFunctions; |
@@ -10,2 +10,4 @@ export declare type LuaState = number; | ||
} | ||
export declare const LUAI_MAXSTACK = 1000000; | ||
export declare const LUA_REGISTRYINDEX: number; | ||
export declare type AnyObject = { | ||
@@ -12,0 +14,0 @@ [key: string]: any; |
{ | ||
"name": "wasmoon", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"description": "There is nothing to see here", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
633984
12
802