forked from nirsky/react-native-size-matters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
40 lines (35 loc) · 1.53 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import * as RN from "react-native";
declare module "react-native-size-matters-iphonex-xs" {
interface StringifiedStyles {
fontSize?: string | number;
letterSpacing?: string | number;
lineHeight?: string | number;
textShadowRadius?: string | number;
borderBottomLeftRadius?: string | number;
borderBottomRightRadius?: string | number;
borderTopLeftRadius?: string | number;
borderTopRightRadius?: string | number;
borderBottomWidth?: string | number;
borderTopWidth?: string | number;
borderRightWidth?: string | number;
borderLeftWidth?: string | number;
borderRadius?: string | number;
shadowRadius?: string | number;
borderWidth?: string | number;
aspectRatio?: string | number;
rotation?: string | number;
scaleX?: string | number;
scaleY?: string | number;
translateX?: string | number;
translateY?: string | number;
}
export function scale(size: number): number;
export function verticalScale(size: number): number;
export function moderateScale(size: number, factor?: number): number;
type NamedStyles<T> = { [P in keyof T]: RN.ViewStyle | RN.TextStyle | RN.ImageStyle | StringifiedStyles };
export namespace ScaledSheet {
export function create<T extends NamedStyles<T> | NamedStyles<any>>(stylesObject: T): {
[P in keyof T]: RN.RegisteredStyle<T[P] & Record<Extract<keyof T[P], keyof StringifiedStyles>, number>>
};
}
}