Chore: upgrade to Typescript 3.9.3 (#25154)

* upgrade to typescript 3.9.3

* Fix errors that surfaced with update

* Null check fixs

* FIx null checks

Co-authored-by: Dominik Prokop <dominik.prokop@grafana.com>
This commit is contained in:
Ryan McKinley
2020-06-17 12:26:01 +02:00
committed by GitHub
co-authored by Dominik Prokop
parent d352c213b3
commit d1b230f84a
34 changed files with 160 additions and 78 deletions
@@ -42,6 +42,8 @@ export function getLoadingNav(tabIndex: number): NavModel {
title: 'Loading',
url: 'url',
canSave: false,
canEdit: false,
canAdmin: false,
version: 0,
});
@@ -9,6 +9,8 @@ function getTestFolder(): FolderDTO {
uid: 'asd',
url: 'url',
canSave: true,
canEdit: true,
canAdmin: true,
version: 0,
};
}