Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

17 rader
602 B

8 år sedan
  1. 'use strict';
  2. export type Mutable<T> = { -readonly [P in keyof T]-?: T[P] };
  3. export type PickMutable<T, K extends keyof T> = Omit<T, K> & { -readonly [P in K]: T[P] };
  4. export * from './system/array';
  5. export * from './system/date';
  6. export * from './system/decorators/gate';
  7. export * from './system/decorators/log';
  8. export * from './system/decorators/memoize';
  9. export * from './system/function';
  10. export * from './system/iterable';
  11. export * from './system/object';
  12. export * from './system/promise';
  13. export * from './system/searchTree';
  14. export * from './system/string';
  15. export * from './system/version';