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

123456789
  1. // These are all the basic types that's compatible with all supported TypeScript versions.
  2. export * from '../base';
  3. // These are special types that require at least TypeScript 4.1.
  4. export {CamelCase} from './camel-case';
  5. export {KebabCase} from './kebab-case';
  6. export {PascalCase} from './pascal-case';
  7. export {SnakeCase} from './snake-case';
  8. export {DelimiterCase} from './delimiter-case';