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

123456789101112
  1. import { Parser } from 'acorn'
  2. declare const jsx: (options?: jsx.Options) => (BaseParser: typeof Parser) => typeof Parser;
  3. declare namespace jsx {
  4. interface Options {
  5. allowNamespacedObjects?: boolean;
  6. allowNamespaces?: boolean;
  7. }
  8. }
  9. export = jsx;