青鸟ai,pc版仓库
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.
 
 
 

17 lines
259 B

import type { Ref } from 'vue'
interface Task {
task1: Ref<HTMLElementl>
task2: Ref<HTMLElement>
task3: Ref<HTMLElement>
task4: Ref<HTMLElement>
}
interface ListType {
title: string
status: boolean
task: string
}
export {
Task,
ListType,
}