@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
13 lines (12 loc) • 539 B
TypeScript
/// <reference types="react" />
import { PullRefreshProps } from "./pull-refresh";
import { PullRefreshCompleted, PullRefreshLoading, PullRefreshLoosing, PullRefreshPulling } from "./pull-refresh-children";
interface PullRefreshInterface {
(props: PullRefreshProps): JSX.Element;
Pulling: typeof PullRefreshPulling;
Loosing: typeof PullRefreshLoosing;
Loading: typeof PullRefreshLoading;
Completed: typeof PullRefreshCompleted;
}
declare const PullRefresh: PullRefreshInterface;
export default PullRefresh;