Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

skava / exotic   js

Repository URL to install this package:

Version: 2.0.8 

/ src / types / index.ts

// @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'
// export const types = {
//   ...kind,
//   ...NATIVE,
//   ...obj,
//   ...iterator,
//   ...functions,
//   ...collection,
//   ...array,
//   ...attributes,
//   ...primitives,
//   ...omni,
//   // is: undefined,
//   // cast: undefined,
//   // get is() {
//   //   return types
//   // }
//   // get cast() {
//   //   return cast
//   // }
// }
// export default types

// 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'