UNPKG

react-native-countdown-eggmun

Version:
25 lines (24 loc) 549 B
export interface CountDownProps { id?: string; digitStyle?: object; digitTxtStyle?: object; timeLabelStyle?: object; separatorStyle?: object; timeToShow?: string[]; showSeparator?: boolean; showLabels?: boolean; size?: number; until: number; autoRestart?: boolean; onChange?: (until: number) => void; onPress?: () => void; onFinish?: () => void; running?: boolean; style?: object; timeLabels?: { d: string; h: string; m: string; s: string; }; }