index.d.ts 271 B

1234567891011
  1. import ES5 from './es5';
  2. import ES6 from './es6';
  3. import ES2015 from './es2015';
  4. declare const ToPrimitive: typeof ES2015 & {
  5. readonly ES5: typeof ES5;
  6. /** @deprecated */
  7. readonly ES6: typeof ES6;
  8. readonly ES2015: typeof ES2015;
  9. };
  10. export = ToPrimitive;