diff --git a/src/components/bottomSheet/types.d.ts b/src/components/bottomSheet/types.d.ts index b96aa43..aabaf9d 100644 --- a/src/components/bottomSheet/types.d.ts +++ b/src/components/bottomSheet/types.d.ts @@ -3,6 +3,7 @@ import type Animated from 'react-native-reanimated'; import type { State } from 'react-native-gesture-handler'; import type { BottomSheetHandleProps } from '../bottomSheetHandle'; import type { BottomSheetBackgroundProps } from '../bottomSheetBackground'; +import type { BottomSheetBackdropProps } from '../bottomSheetBackdrop'; export type BottomSheetProps = { // configuration @@ -95,12 +96,14 @@ export type BottomSheetProps = { handleComponent?: React.FC | null; /** * Component to be placed as a sheet backdrop. - * @type React.FC + * @see {BottomSheetBackdropProps} + * @type React.FC\ * @default null */ - backdropComponent?: React.FC | null; + backdropComponent?: React.FC | null; /** * Component to be placed as a sheet background. + * @see {BottomSheetBackgroundProps} * @type React.FC\ */ backgroundComponent?: React.FC | null;