Fix web code linting to be portable across environments

This commit is contained in:
Keavon Chambers
2021-04-14 11:44:09 -07:00
parent fcc4c1874b
commit c94c2b3373
23 changed files with 361 additions and 189 deletions

View File

@@ -3,7 +3,9 @@ type ResponseMap = {
[response: string]: ResponseCallback | undefined;
};
declare global {
interface Window { responseMap: ResponseMap }
interface Window {
responseMap: ResponseMap;
}
}
export enum ResponseType {