diff options
Diffstat (limited to 'src/components/Dialog')
-rw-r--r-- | src/components/Dialog/types.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/Dialog/types.ts b/src/components/Dialog/types.ts index 32886f3ce..3ca64a321 100644 --- a/src/components/Dialog/types.ts +++ b/src/components/Dialog/types.ts @@ -68,7 +68,10 @@ export type DialogOuterProps = { testID?: string } -type DialogInnerPropsBase<T> = React.PropsWithChildren<ViewStyleProp> & T +type DialogInnerPropsBase<T> = React.PropsWithChildren<ViewStyleProp> & + T & { + testID?: string + } export type DialogInnerProps = | DialogInnerPropsBase<{ label?: undefined |