UNPKG

react-native-gif-player

Version:
14 lines 602 B
/// <reference types="react-native/types/modules/codegen" /> /// <reference types="react-native/codegen" /> import { Component, type ComponentProps } from 'react'; import GifPlayerNativeView from './GifPlayerViewNativeComponent'; import type { Int32 } from 'react-native/Libraries/Types/CodegenTypes'; type Props = ComponentProps<typeof GifPlayerNativeView>; declare class GifPlayerView extends Component<Props> { private innerRef; jumpToFrame: (frameNumber: Int32) => void; memoryClear: () => void; render(): JSX.Element; } export { GifPlayerView }; //# sourceMappingURL=index.d.ts.map