Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. interface Callback { (data: any): void; }
  2.  
  3. declare class EventSource {
  4. onmessage: Callback;
  5. addEventListener(event: string, cb: Callback): void;
  6. constructor(name: string);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement