File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed
Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change 11/* eslint-disable @typescript-eslint/no-explicit-any */
2- import { StyleSheet , Text , View } from "react-native" ;
2+ import { StyleSheet } from "react-native" ;
33
44import type { CustomTimerPickerStyles } from "./TimerPicker/TimerPicker.styles" ;
5- import { ComponentProps } from "react" ;
65
76export interface CustomTimerPickerModalStyles extends CustomTimerPickerStyles {
8- container ?: ComponentProps < typeof View > ;
9- contentContainer ?: ComponentProps < typeof View > ;
10- buttonContainer ?: ComponentProps < typeof View > ;
11- button ?: ComponentProps < typeof Text > ;
12- cancelButton ?: ComponentProps < typeof Text > ;
13- confirmButton ?: ComponentProps < typeof Text > ;
14- modalTitle ?: ComponentProps < typeof Text > ;
7+ container ?: any ;
8+ contentContainer ?: any ;
9+ buttonContainer ?: any ;
10+ button ?: any ;
11+ cancelButton ?: any ;
12+ confirmButton ?: any ;
13+ modalTitle ?: any ;
1514}
1615
1716const DARK_MODE_BACKGROUND_COLOR = "#232323" ;
You can’t perform that action at this time.
0 commit comments