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:
parent
7b3eeec65c
commit
da61c6a4ba
2136
docs/pnpm-lock.yaml
2136
docs/pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user