mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-18 05:23:49 +00:00
Enabled @typescript-eslint/no-unsafe-call eslint rule again
This commit is contained in:
7
shlink-web-client.d.ts
vendored
7
shlink-web-client.d.ts
vendored
@@ -1,5 +1,10 @@
|
||||
declare module 'event-source-polyfill' {
|
||||
export const EventSourcePolyfill: any;
|
||||
declare class EventSourcePolyfill {
|
||||
public onmessage?: ({ data }: { data: string }) => void;
|
||||
public onerror?: ({ status }: { status: number }) => void;
|
||||
public close: Function;
|
||||
public constructor(hubUrl: URL, options?: any);
|
||||
}
|
||||
}
|
||||
|
||||
declare module 'csvjson' {
|
||||
|
||||
Reference in New Issue
Block a user