react-native-app-notification
Version:
In-app custom notifications for React-Native
9 lines (8 loc) • 429 B
TypeScript
import { FunctionComponent } from 'react';
import { AppNotificationComponentProps, AppNotificationStyleProps, NotificationQueueItem } from '../types';
declare type OwnProps = AppNotificationStyleProps & {
children?: Element;
};
declare type Props = OwnProps & NotificationQueueItem & AppNotificationComponentProps;
export declare const AppNotificationWrapper: FunctionComponent<Props>;
export default AppNotificationWrapper;