You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
602 B

преди 6 години
преди 8 години
преди 5 години
  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';