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