mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
declare module 'event-source-polyfill' {
|
|
declare class EventSourcePolyfill {
|
|
public onmessage?: ({ data }: { data: string }) => void;
|
|
public onerror?: ({ status }: { status: number }) => void;
|
|
public close: () => void;
|
|
public constructor(hubUrl: URL, options?: any);
|
|
}
|
|
}
|
|
|
|
declare module '*.png'
|