@mr_gain/react-native-image-modal
Version:
image full screen modal for react native
17 lines • 472 B
TypeScript
import type { RefObject } from 'react';
import type { View } from 'react-native';
interface Params {
readonly imageRef: RefObject<View>;
readonly isRTL: boolean;
}
declare const useOriginImageLayout: ({ imageRef, isRTL }: Params) => {
originImageLayout: {
x: number;
y: number;
width: number;
height: number;
};
updateOriginImageLayout: () => void;
};
export { useOriginImageLayout };
//# sourceMappingURL=index.d.ts.map