Add typechecks, typescript coverage GH action, fix many type errors (#3136)

This commit is contained in:
Alexander Skvortsov
2021-11-11 14:17:22 -05:00
committed by GitHub
parent 563d40d7da
commit bac0e594ee
43 changed files with 1079 additions and 324 deletions

View File

@ -22,7 +22,7 @@ export default abstract class Modal<ModalAttrs = {}> extends Component<ModalAttr
/**
* Determine whether or not the modal should be dismissible via an 'x' button.
*/
static readonly isDismissible = true;
static readonly isDismissible: boolean = true;
protected loading: boolean = false;