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 777B

1234567891011121314151617181920
  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. // Miscellaneous
  18. export {PackageJson} from './source/package-json';