Enabled @typescript-eslint/no-unsafe-return eslint rule again

This commit is contained in:
Alejandro Celaya
2021-02-28 18:48:36 +01:00
parent ad0a889548
commit ce0fc1094e
9 changed files with 14 additions and 13 deletions

View File

@@ -2,7 +2,7 @@ declare module 'event-source-polyfill' {
declare class EventSourcePolyfill {
public onmessage?: ({ data }: { data: string }) => void;
public onerror?: ({ status }: { status: number }) => void;
public close: Function;
public close: () => void;
public constructor(hubUrl: URL, options?: any);
}
}