Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

index.d.ts 1.3KB

1234567891011121314151617181920212223242526272829
  1. // Basic
  2. export * from './source/basic';
  3. // Utilities
  4. export {Except} from './source/except';
  5. export {Mutable} from './source/mutable';
  6. export {Merge} from './source/merge';
  7. export {MergeExclusive} from './source/merge-exclusive';
  8. export {RequireAtLeastOne} from './source/require-at-least-one';
  9. export {RequireExactlyOne} from './source/require-exactly-one';
  10. export {PartialDeep} from './source/partial-deep';
  11. export {ReadonlyDeep} from './source/readonly-deep';
  12. export {LiteralUnion} from './source/literal-union';
  13. export {Promisable} from './source/promisable';
  14. export {Opaque} from './source/opaque';
  15. export {SetOptional} from './source/set-optional';
  16. export {SetRequired} from './source/set-required';
  17. export {ValueOf} from './source/value-of';
  18. export {PromiseValue} from './source/promise-value';
  19. export {AsyncReturnType} from './source/async-return-type';
  20. export {ConditionalExcept} from './source/conditional-except';
  21. export {ConditionalKeys} from './source/conditional-keys';
  22. export {ConditionalPick} from './source/conditional-pick';
  23. export {UnionToIntersection} from './source/union-to-intersection';
  24. export {Stringified} from './source/stringified';
  25. // Miscellaneous
  26. export {PackageJson} from './source/package-json';
  27. export {TsConfigJson} from './source/tsconfig-json';