Apply suggestions from code review

Co-authored-by: David Graham <dgraham@github.com>
This commit is contained in:
Mu-An 慕安 2020-05-20 13:43:17 -04:00 коммит произвёл GitHub
Родитель 18a6ef5cca
Коммит eb44a7a777
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -41,7 +41,7 @@ function getButtons(toolbar: Element): HTMLElement[] {
return els
}
function keydown(fn: (arg0: KeyboardEvent) => void): (arg0: KeyboardEvent) => void {
function keydown(fn: (event: KeyboardEvent) => void): (event: KeyboardEvent) => void {
return function (event: KeyboardEvent) {
if (event.key === ' ' || event.key === 'Enter') {
event.preventDefault()

Просмотреть файл

@ -1,6 +1,6 @@
{
"compilerOptions": {
"module": "esnext",
"module": "es2020",
"target": "es2017",
"strict": true,
"declaration": true,