-
-
Notifications
You must be signed in to change notification settings - Fork 352
/
Copy pathtype-definitions.js
30 lines (30 loc) · 1.14 KB
/
type-definitions.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* @typedef {import("../index").DatePickerProps} Props
* @typedef {Omit<Props, "timeZoneOffsetInMinutes"> & { timeZoneOffsetInMinutes: string, textColor: string | undefined, onDateStringChange?: (date: string) => void }} PlatformPickerProps
*
* Should be using fabric props directly when api is aligned between platforms.
* {import("./fabric/RNDatePickerNativeComponent").NativeProps} NativeProps
* @typedef {{
* timeZoneOffsetInMinutes: string,
* date: string | number | undefined,
* id?: string ,
* minimumDate?: string | number | undefined,
* maximumDate?: string | number | undefined,
* timezoneOffsetInMinutes?: string | undefined,
* style: import('react-native').StyleProp<import('react-native').ViewStyle>,
* onChange: (e: *) => void,
* onStateChange?: (e?: *) => void,
* onStartShouldSetResponder?: (e?: *) => void,
* onResponderTerminationRequest?: (e?: *) => void,
* locale?: string | undefined,
* theme?: string | undefined,
* onConfirm?:PlatformPickerProps['onConfirm'],
* onCancel?:PlatformPickerProps['onCancel'],
* }} NativeProps
*
* @typedef {NativeProps & {
* modal?: boolean,
* open?: boolean,
* }} ModalProps
*
*/