UNPKG
@tsukiroku/tiny
Version:
latest (0.3.7)
0.3.67
0.3.66
0.3.65
0.3.64
0.3.63
0.3.62
0.3.61
0.3.51
0.3.41
0.3.35
0.3.7
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.12
0.2.1
0.2.0
0.1.33
0.1.32
0.1.31
0.1.3
0.1.2
0.1.1
0.1.0
Tiny interpreter
github.com/tsukiroku/tiny
tsukiroku/tiny
@tsukiroku/tiny
/
dist
/
tiny
/
options
/
types.d.ts
11 lines
(10 loc)
•
260 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
interface
IOptions
{
allowEval
:
boolean
;
allowJavaScript
:
boolean
;
useStdLibAutomatically
:
boolean
;
stderrPrefix
:
boolean
;
stderrColor
:
boolean
;
locale
:
string
; }
declare
type
Options
=
Partial
<
IOptions
>;
export
default
Options
;