shlink-web-client/shlink-web-client.d.ts

11 lines
315 B
TypeScript
Raw Normal View History

2020-08-29 14:51:53 +03:00
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);
}
2020-08-22 09:47:19 +03:00
}
2020-08-29 14:51:53 +03:00
declare module '*.png'