react-native-app-notification
Version:
In-app custom notifications for React-Native
14 lines (13 loc) • 380 B
TypeScript
import { FunctionComponent } from 'react';
declare type Props = {
duration?: number;
yOffset?: number;
delay?: number;
height?: number;
reversed?: boolean;
children?: JSX.Element;
};
export declare const DEFAULT_DURATION = 200;
export declare const SlideUpFadeIn: FunctionComponent<Props>;
export declare const Shrink: FunctionComponent<Props>;
export {};