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

123456789101112131415161718
  1. export = fetchPonyfill;
  2. declare function fetchPonyfill(options?: fetchPonyfill.BootstrapOptions): fetchPonyfill.BootstrapRetVal;
  3. declare namespace fetchPonyfill {
  4. interface BootstrapOptions {
  5. Promise?: Function;
  6. XMLHttpRequest?: Function;
  7. }
  8. interface BootstrapRetVal {
  9. fetch: typeof fetch;
  10. Headers: typeof Headers;
  11. Request: typeof Request;
  12. Response: typeof Response;
  13. DOMException: typeof DOMException;
  14. }
  15. }