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

123456789101112131415
  1. type NotFunc<T> = Exclude<T, Function>
  2. interface RESQNode {
  3. name: string,
  4. node: HTMLElement | null,
  5. isFragment: boolean,
  6. state: NotFunc<any>,
  7. props: {},
  8. children: RESQNode[]
  9. _nodes: Array<RESQNode>
  10. }
  11. export const waitToLoadReact: (timeInMs?: number, rootElSelector?: string) => Promise<null | string>
  12. export const resq$: (selector: string, element?: HTMLElement) => RESQNode
  13. export const resq$$: (selector: string, element?: HTMLElement) => Array<RESQNode>