react-native-ios-utilities
Version:
Utilities for react-native + iOS
25 lines (24 loc) • 398 B
JavaScript
export {};
/*
export type UIFontNativeInit = {
name: string;
size: number;
} | {
// not supported
descriptor: never; // UIFontDescriptor
size: number
} | {
systemFont: number;
size: number;
} | {
systemFont: number;
} | {
mode: 'systemFont';
size: number;
};
export type UIFontNativeModifiers = {
modifier: 'withSize';
size: number;
};
*/
//# sourceMappingURL=UIFont.js.map