UNPKG

react-native-scroll-into-view

Version:

React-Native port of DOMElement.scrollIntoView() web function, for ScrollView

12 lines (11 loc) 428 B
import React from 'react'; import { ScrollIntoViewAPI, ScrollIntoViewDependencies } from './api'; declare const Context: React.Context<ScrollIntoViewAPI | null>; export default Context; export declare const APIConsumer: React.Consumer<ScrollIntoViewAPI | null>; export declare class ProvideAPI extends React.Component<{ dependencies: ScrollIntoViewDependencies; }> { api: ScrollIntoViewAPI; render(): JSX.Element; }