shlink-web-client/shlink-web-client.d.ts
2022-03-31 20:18:05 +02:00

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'