Home
last modified time | relevance | path

Searched refs:PickPartial (Results 1 – 6 of 6) sorted by relevance

/expo/packages/expo-router/build/layouts/
H A DwithLayoutContext.d.ts3 import { PickPartial } from '../types';
14 …e, EventMap>[]): React.ForwardRefExoticComponent<React.PropsWithoutRef<PickPartial<React.Component…
H A DwithLayoutContext.js.map1PickPartial } from '../types';\nimport { useSortedScreens, ScreenProps } from '../useScreens';\nim…
/expo/packages/expo-router/src/
H A Dtypes.ts16 export type PickPartial<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>; alias
/expo/packages/expo-router/build/
H A Dtypes.d.ts13 export type PickPartial<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>; alias
H A Dtypes.js.map1 …become optional, everything else will remain the same. */\nexport type PickPartial<T, K extends ke…
/expo/packages/expo-router/src/layouts/
H A DwithLayoutContext.tsx5 import { PickPartial } from '../types';
76 React.PropsWithoutRef<PickPartial<React.ComponentProps<T>, 'children'>> &
83 { children: userDefinedChildren, ...props }: PickPartial<React.ComponentProps<T>, 'children'>,