25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

17 satır
602 B

8 yıl önce
  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';