simplex-lang
Version:
SimplEx - simple expression language
12 lines (11 loc) • 316 B
TypeScript
export * from './cast.js';
export * from './ensure.js';
export * from './guards.js';
/**
* Converts instances of Number, String and Boolean to primitives
*/
export declare function unbox(val: unknown): unknown;
/**
* Returns more specific type of a value
*/
export declare function typeOf(val: unknown): string;