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.d.ts 490B

123456789101112131415161718
  1. /// <reference types="node" />
  2. import { Writable } from 'stream';
  3. export declare type FeedObject = string | {
  4. [key: string]: string | boolean | null | FeedObject | FeedObject[];
  5. };
  6. export declare type FeedItem = {
  7. [key: string]: FeedObject;
  8. };
  9. export declare type Feed = {
  10. type: string;
  11. items: FeedItem[];
  12. [key: string]: FeedObject | FeedObject[];
  13. };
  14. export interface Parser extends Writable {
  15. _buffer: boolean;
  16. parser: Writable;
  17. done(): Feed | undefined;
  18. }