Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
exotic / src / types / index.ts
Size: Mime:
// @lint silly webpack giving no exports
/* eslint-disable import/no-namespace */
import * as kind from './kind'
import * as NATIVE from './NATIVE'
import * as obj from './obj'
import * as iterator from './iterator'
import * as functions from './function'
import * as collection from './collection'
import * as array from './array'
import * as attributes from './attributes'
import * as primitives from './primitive'
import * as omni from './@omni'

const types = {
  ...kind,
  ...NATIVE,
  ...obj,
  ...iterator,
  ...functions,
  ...collection,
  ...array,
  ...attributes,
  ...primitives,
  ...omni,

  is: undefined,
  cast: undefined,
}
export const is = types
export const cast = types
types.is = is
types.cast = cast

export * from './kind'
export * from './NATIVE'
export * from './obj'
export * from './iterator'
export * from './function'
export * from './collection'
export * from './array'
export * from './attributes'
export * from './primitive'
export * from './@omni'
export default types