1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-11-24 08:02:18 +02:00

chore(deps): lock file maintenance (#2595)

This commit is contained in:
renovate[bot] 2023-10-17 20:25:51 +02:00 committed by GitHub
parent 7b3eeec65c
commit da61c6a4ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1400 additions and 1396 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@ import { computed, onBeforeUnmount, onMounted, Ref, ref, watch } from 'vue';
export function useElapsedTime(running: Ref<boolean>, startTime: Ref<number | undefined>) {
const time = ref<number | undefined>(startTime.value);
const timer = ref<NodeJS.Timer>();
const timer = ref<ReturnType<typeof setInterval>>();
function stopTimer() {
if (timer.value !== undefined) {