expo
Version:
292 lines (279 loc) • 8.11 kB
TypeScript
import { StyleProp } from 'react-native';
import * as RN from 'react-native';
declare module 'react-native' {
/**
* View
*/
interface ViewProps {
className?: string;
}
interface ViewStyle {
/** @platform web */
backdropFilter?: string;
/** @platform web */
animationDelay?: string | string[] | number | number[];
/** @platform web */
animationDirection?: string | string[];
/** @platform web */
animationDuration?: string | string[] | number | number[];
/** @platform web */
animationFillMode?: string | string[];
/** @platform web */
animationName?: string | Record<string, any> | (string | Record<string, any>)[];
/** @platform web */
animationIterationCount?: number | 'infinite' | (number | 'infinite')[];
/** @platform web */
animationPlayState?: string | string[];
/** @platform web */
animationTimingFunction?: string | string[];
/** @platform web */
backgroundAttachment?: string;
/** @platform web */
backgroundBlendMode?: string;
/** @platform web */
backgroundClip?: string;
/** @platform web */
backgroundImage?: string;
/** @platform web */
backgroundOrigin?: 'border-box' | 'content-box' | 'padding-box';
/** @platform web */
backgroundPosition?: string;
/** @platform web */
backgroundRepeat?: string;
/** @platform web */
backgroundSize?: string;
/** @platform web */
boxShadow?: string;
/** @platform web */
boxSizing?: string;
/** @platform web */
clip?: string;
/** @platform web */
cursor?: string;
/** @platform web */
filter?: string;
/** @platform web */
gridAutoColumns?: string;
/** @platform web */
gridAutoFlow?: string;
/** @platform web */
gridAutoRows?: string;
/** @platform web */
gridColumnEnd?: string;
/** @platform web */
gridColumnGap?: string;
/** @platform web */
gridColumnStart?: string;
/** @platform web */
gridRowEnd?: string;
/** @platform web */
gridRowGap?: string;
/** @platform web */
gridRowStart?: string;
/** @platform web */
gridTemplateColumns?: string;
/** @platform web */
gridTemplateRows?: string;
/** @platform web */
gridTemplateAreas?: string;
/** @platform web */
outline?: string;
/** @platform web */
outlineColor?: string;
/** @platform web */
overflowX?: string;
/** @platform web */
overflowY?: string;
/** @platform web */
overscrollBehavior?: 'auto' | 'contain' | 'none';
/** @platform web */
overscrollBehaviorX?: 'auto' | 'contain' | 'none';
/** @platform web */
overscrollBehaviorY?: 'auto' | 'contain' | 'none';
/** @platform web */
perspective?: string;
/** @platform web */
perspectiveOrigin?: string;
/** @platform web */
touchAction?: string;
/** @platform web */
transitionDelay?: string | string[];
/** @platform web */
transitionDuration?: string | string[];
/** @platform web */
transitionProperty?: string | string[];
/** @platform web */
transitionTimingFunction?: string | Function | (string | Function)[];
/** @platform web */
userSelect?: string;
/** @platform web */
visibility?: string;
/** @platform web */
willChange?: string;
/** @platform web */
position?: 'static' | 'relative' | 'absolute' | 'fixed' | 'sticky';
}
/**
* Text
*/
interface TextProps {
className?: string;
style?: StyleProp<TextStyle>;
/** @platform web */
tabIndex?: number;
/** @platform web */
lang?: string;
}
interface TextStyle {
/** @platform web */
backdropFilter?: string;
/** @platform web */
animationDelay?: string | string[] | number | number[];
/** @platform web */
animationDirection?: string | string[];
/** @platform web */
animationDuration?: string | string[] | number | number[];
/** @platform web */
animationFillMode?: string | string[];
/** @platform web */
animationName?: string | Record<string, any> | (string | Record<string, any>)[];
/** @platform web */
animationIterationCount?: number | 'infinite' | (number | 'infinite')[];
/** @platform web */
animationPlayState?: string | string[];
/** @platform web */
animationTimingFunction?: string | string[];
/** @platform web */
backgroundAttachment?: string;
/** @platform web */
backgroundBlendMode?: string;
/** @platform web */
backgroundClip?: string;
/** @platform web */
backgroundImage?: string;
/** @platform web */
backgroundOrigin?: 'border-box' | 'content-box' | 'padding-box';
/** @platform web */
backgroundPosition?: string;
/** @platform web */
backgroundRepeat?: string;
/** @platform web */
backgroundSize?: string;
/** @platform web */
boxShadow?: string;
/** @platform web */
boxSizing?: string;
/** @platform web */
clip?: string;
/** @platform web */
cursor?: string;
/** @platform web */
filter?: string;
/** @platform web */
gridAutoColumns?: string;
/** @platform web */
gridAutoFlow?: string;
/** @platform web */
gridAutoRows?: string;
/** @platform web */
gridColumnEnd?: string;
/** @platform web */
gridColumnGap?: string;
/** @platform web */
gridColumnStart?: string;
/** @platform web */
gridRowEnd?: string;
/** @platform web */
gridRowGap?: string;
/** @platform web */
gridRowStart?: string;
/** @platform web */
gridTemplateColumns?: string;
/** @platform web */
gridTemplateRows?: string;
/** @platform web */
gridTemplateAreas?: string;
/** @platform web */
outline?: string;
/** @platform web */
outlineColor?: string;
/** @platform web */
overflowX?: string;
/** @platform web */
overflowY?: string;
/** @platform web */
overscrollBehavior?: 'auto' | 'contain' | 'none';
/** @platform web */
overscrollBehaviorX?: 'auto' | 'contain' | 'none';
/** @platform web */
overscrollBehaviorY?: 'auto' | 'contain' | 'none';
/** @platform web */
perspective?: string;
/** @platform web */
perspectiveOrigin?: string;
/** @platform web */
touchAction?: string;
/** @platform web */
transitionDelay?: string | string[];
/** @platform web */
transitionDuration?: string | string[];
/** @platform web */
transitionProperty?: string | string[];
/** @platform web */
transitionTimingFunction?: string | Function | (string | Function)[];
/** @platform web */
userSelect?: string;
/** @platform web */
visibility?: string;
/** @platform web */
willChange?: string;
/** @platform web */
position?: 'static' | 'relative' | 'absolute' | 'fixed' | 'sticky';
/** @platform web */
fontFeatureSettings?: string;
/** @platform web */
textIndent?: string;
/** @platform web */
textOverflow?: string;
/** @platform web */
textRendering?: string;
/** @platform web */
unicodeBidi?: string;
/** @platform web */
wordWrap?: string;
}
/**
* Pressable
*/
interface PressableStateCallbackType {
readonly pressed: boolean;
readonly hovered: boolean;
}
interface PressableProps {
children?:
| React.ReactNode
| ((state: PressableStateCallbackType) => React.ReactNode)
| undefined;
style?:
| RN.StyleProp<ViewStyle>
| ((state: PressableStateCallbackType) => RN.StyleProp<ViewStyle>);
}
// export const Pressable: React.ForwardRefExoticComponent<
// PressableProps & React.RefAttributes<RN.View>
// >;
interface FlatListProps<ItemT> extends RN.VirtualizedListProps<ItemT> {
className?: string;
}
interface ImagePropsBase {
className?: string;
}
interface SwitchProps {
className?: string;
}
interface InputAccessoryViewProps {
className?: string;
}
interface TouchableWithoutFeedbackProps {
className?: string;
}
}