mirror of
https://codeberg.org/timelimit/timelimit-server-ui.git
synced 2025-10-04 09:39:15 +02:00
Replace tslint by eslint
This commit is contained in:
parent
2f0ca96d7d
commit
c70c0d131a
6 changed files with 2134 additions and 357 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* TimeLimit Server Admin UI
|
||||
* Copyright (C) 2020 Jonas Lochmann
|
||||
* Copyright (C) 2020 - 2022 Jonas Lochmann
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as
|
||||
|
@ -17,7 +17,7 @@
|
|||
|
||||
import { Api, ApiCreator, IllegalAccessDataError } from './api'
|
||||
|
||||
const delay = (time: number) => new Promise((resolve, _) => {
|
||||
const delay = (time: number) => new Promise((resolve) => {
|
||||
setTimeout(() => resolve(), time)
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue