main
ts 12 lines 237 Bytes
Raw
1 import { ref } from "vue"
2
3 const healthcheckFilters = ref<Partial<{ time: number; unit: "minutes" | "hours" | "days" }>>({
4 time: 1,
5 unit: "days"
6 })
7
8 export function useCustomerHealthcheckFilters() {
9 return {
10 healthcheckFilters
11 }
12 }