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.

parser-babel.d.ts 360B

12345678910111213141516
  1. import { Parser } from './';
  2. declare const parser: {
  3. parsers: {
  4. babel: Parser;
  5. 'babel-flow': Parser;
  6. 'babel-ts': Parser;
  7. json: Parser;
  8. json5: Parser;
  9. 'json-stringify': Parser;
  10. __js_expression: Parser;
  11. __vue_expression: Parser;
  12. __vue_event_binding: Parser;
  13. };
  14. };
  15. export = parser;