UNPKG

comic-plus

Version:

<p align="center"> <img width="200px" src="./logo.png"/> </p>

29 lines (27 loc) 636 B
import { ComputedRef, InjectionKey } from 'vue'; import { ClockProps } from './main.props'; export declare const NUMBER_SHOW_ENUM: boolean[][]; export declare const NUMBER_ROMAN: { 1: string; 2: string; 3: string; 4: string; 5: string; 6: string; 7: string; 8: string; 9: string; 10: string; 11: string; 12: string; }; export declare const COLOR_ENUM: string[]; export type ClockProvide = { getTimes: ComputedRef<{ hour: number; minute: number; second: number; }>; props: ClockProps; }; export declare const CLOCK_PROVIDE: InjectionKey<ClockProvide>;