type ITypes = ['Boolean', 'Undefined', 'Null', 'String', 'Number', 'Array', 'Object', 'Set', 'Map', 'Symbol']; type IGetArraryValues = Iarrary[T]; type Itype = IGetArraryValues; type ITypeUtils = { [T in Itype as `is${T}`]: (val: any) => boolean; }; declare let typeUtils: ITypeUtils; export default typeUtils; //# sourceMappingURL=checkType.d.ts.map