first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

25
node_modules/expo-router/build/views/Pressable.d.ts generated vendored Normal file
View File

@@ -0,0 +1,25 @@
import { ClassAttributes, ComponentProps, ComponentType } from 'react';
import { Pressable as NativePressable, StyleProp, ViewStyle, PressableStateCallbackType as NativePressableStateCallbackType } from 'react-native';
type NativePressableProps = ComponentProps<typeof NativePressable> & ClassAttributes<typeof NativePressable>;
export type PressableStateCallbackType = NativePressableStateCallbackType & {
readonly pressed: boolean;
readonly hovered: boolean;
/** @platform web */
readonly focused: boolean;
};
export type WebPressableProps = {
/**
* Either children or a render prop that receives a boolean reflecting whether
* the component is currently pressed.
*/
children?: React.ReactNode | ((state: PressableStateCallbackType) => React.ReactNode);
/**
* Either view styles or a function that receives a boolean reflecting whether
* the component is currently pressed and returns view styles.
*/
style?: StyleProp<ViewStyle> | ((state: PressableStateCallbackType) => StyleProp<ViewStyle>);
};
export type PressableProps = Omit<NativePressableProps, 'children' | 'style'> & WebPressableProps;
export declare const Pressable: ComponentType<PressableProps>;
export {};
//# sourceMappingURL=Pressable.d.ts.map