DefinitelyTyped/types/react-native-responsive-dimensions/index.d.ts

14 lines
678 B
TypeScript

// Type definitions for react-native-responsive-dimensions 3.0
// Project: https://github.com/DaniAkash/react-native-responsive-dimensions#readme
// Definitions by: Steven Conaway <https://github.com/SConaway>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/*~ If this module has methods, declare them as functions like so.
*/
export function responsiveHeight(h: number): number;
export function responsiveWidth(w: number): number;
export function responsiveFontSize(f: number): number;
export function useResponsiveHeight(h: number): number;
export function useResponsiveWidth(w: number): number;
export function useResponsiveFontSize(f: number): number;