Searched refs:PickPartial (Results 1 – 6 of 6) sorted by relevance
| /expo/packages/expo-router/build/layouts/ |
| H A D | withLayoutContext.d.ts | 3 import { PickPartial } from '../types'; 14 …e, EventMap>[]): React.ForwardRefExoticComponent<React.PropsWithoutRef<PickPartial<React.Component…
|
| H A D | withLayoutContext.js.map | 1 …PickPartial } from '../types';\nimport { useSortedScreens, ScreenProps } from '../useScreens';\nim…
|
| /expo/packages/expo-router/src/ |
| H A D | types.ts | 16 export type PickPartial<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>; alias
|
| /expo/packages/expo-router/build/ |
| H A D | types.d.ts | 13 export type PickPartial<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>; alias
|
| H A D | types.js.map | 1 …become optional, everything else will remain the same. */\nexport type PickPartial<T, K extends ke…
|
| /expo/packages/expo-router/src/layouts/ |
| H A D | withLayoutContext.tsx | 5 import { PickPartial } from '../types'; 76 React.PropsWithoutRef<PickPartial<React.ComponentProps<T>, 'children'>> & 83 { children: userDefinedChildren, ...props }: PickPartial<React.ComponentProps<T>, 'children'>,
|