UNPKG
simplex-lang
Version:
latest (0.2.2)
0.2.2
0.2.1
0.2.0
0.1.0
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
SimplEx - simple expression language
github.com/wmakeev/simplex
wmakeev/simplex
simplex-lang
/
build
/
src
/
tools
/
ensure.d.ts
4 lines
(3 loc)
•
225 B
TypeScript
View Raw
1
2
3
4
export
declare
function
ensureNumber
(
val
:
unknown
):
number
|
bigint
;
export
declare
function
ensureFunction
(
val
:
unknown
):
Function
;
export
declare
function
ensureRelationalComparable
(
val
:
unknown
):
number
|
string
|
bigint
;