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 / chain-able-deps   js

Repository URL to install this package:

Version: 6.0.4 

/ src / _typings / typeof.ts

export type BuiltInTypeOf =
  | 'string'
  | 'number'
  | 'boolean'
  | 'symbol'
  | 'undefined'
  | 'object'
  | 'function'

export type ExtendedTypeOfSimple = BuiltInTypeOf | 'null' | 'array'

export type LongToStringKindOf = '[Object object]'
export type ShortToStringKindOf = BuiltInTypeOf | 'map' | 'set' | 'uint32array'