UNPKG
@montferret/ferret-wasm
Version:
alpha (2.0.0-alpha.30)
latest (1.0.0)
2.0.0-alpha.30
1.0.0
0.7.3
0.7.2
0.7.1
0.7.0
Ferret compiler and runtime ported to WASM
github.com/MontFerret/ferret-wasm
MontFerret/ferret-wasm
@montferret/ferret-wasm
/
dist
/
program.d.ts
10 lines
(9 loc)
•
264 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Compiler
}
from
'./compiler'
;
export
declare
class
Program
{
private
__compiler;
private
__id;
constructor
(
engine
:
Compiler
,
id
:
string
);
readonly
isDestroyed
:
boolean
; run<T =
any
>(
params
?:
object
):
Promise
<T>;
destroy
():
void
; }