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

1234567891011121314
  1. // TypeScript Version: 3.0
  2. import {Plugin} from 'unified'
  3. import {Options} from 'mdast-util-from-markdown'
  4. declare namespace remarkParse {
  5. interface Parse extends Plugin<[RemarkParseOptions?]> {}
  6. type RemarkParseOptions = Options
  7. }
  8. declare const remarkParse: remarkParse.Parse
  9. export = remarkParse