vue3-calendar-component
Version:
A comprehensive Vue 3 Calendar component with Vuetify 3, TypeScript, and advanced features
9 lines • 479 B
TypeScript
import { Ref } from 'vue';
/**
* Helper composable to convert time strings to a more usable format.
* This can be used to convert time strings like "08:00" to a Date object
* @param timeRef - Reference to a time string in "HH:mm" format
* @returns A computed reference that returns the total minutes from the start of the day
*/
export declare function useTimeConverter(timeRef: Ref<string>): import("vue").ComputedRef<number>;
//# sourceMappingURL=useTimeConverter.d.ts.map