28 lines
676 B
TypeScript
28 lines
676 B
TypeScript
|
|
|
|
import { getApplicationLocation } from "./applPath";
|
|
import { DataInterface, TypeCheck } from "./dataInterface";
|
|
import { isArray, isArrayOf, isBoolean, isNull, isNullOrUndefined, isNumber, isNumberFinite, isObject, isOptionalOf, isOptionalArrayOf, isString, isUndefined, isArrayOfs, isInArray, isStringNullOrUndefined } from "./validator";
|
|
|
|
export {
|
|
isNumber,
|
|
isNumberFinite,
|
|
isBoolean,
|
|
isString,
|
|
isArray,
|
|
isNull,
|
|
isUndefined,
|
|
isNullOrUndefined,
|
|
isObject,
|
|
isArrayOf,
|
|
isArrayOfs,
|
|
isOptionalOf,
|
|
isOptionalArrayOf,
|
|
isInArray,
|
|
isStringNullOrUndefined,
|
|
DataInterface,
|
|
TypeCheck,
|
|
getApplicationLocation,
|
|
}
|
|
|