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

12345678910111213141516171819
  1. // TypeScript Version: 3.5
  2. import {Node, Parent} from 'unist'
  3. import {Test} from 'unist-util-is'
  4. export = findAllAfter
  5. /**
  6. * Unist utility to get all children of a parent after a node or index
  7. *
  8. * @param parent Parent to search in
  9. * @param index or Node to start from
  10. * @param test that Nodes must pass to be included
  11. * @returns Array of found Nodes
  12. */
  13. declare function findAllAfter<T extends Node>(
  14. parent: Parent,
  15. index: number | Node,
  16. test?: Test<T> | Array<Test<T>>
  17. ): Node[]