You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
190 B
9 lines
190 B
1 year ago
|
import type { Ref } from 'vue'
|
||
|
|
||
|
export interface Task {
|
||
|
task1: Ref<HTMLElement | null>
|
||
|
task2: Ref<HTMLElement | null>
|
||
|
task3: Ref<HTMLElement | null>
|
||
|
task4: Ref<HTMLElement | null>
|
||
|
}
|