UNPKG

@extra2001/compute-engine

Version:

Symbolic computing and numeric evaluations for JavaScript and Node.js

10 lines (9 loc) 505 B
/* 0.28.0 */ import type { PrimitiveType } from './types'; /** All the types representing numeric values */ export declare const NUMERIC_TYPES: PrimitiveType[]; export declare const COLLECTION_TYPES: PrimitiveType[]; export declare const SCALAR_TYPES: PrimitiveType[]; export declare const VALUE_TYPES: PrimitiveType[]; export declare const EXPRESSION_TYPES: PrimitiveType[]; export declare const PRIMITIVE_TYPES: PrimitiveType[]; export declare function isValidPrimitiveType(s: any): s is PrimitiveType;