@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
15 lines (14 loc) • 476 B
TypeScript
import React from 'react';
import { TextStyle } from 'react-native';
import { Action } from './PropsType';
export interface AlertContainerProps {
title: React.ReactNode;
content: React.ReactNode;
actions: Action<TextStyle>[];
onAnimationEnd?: (visible: boolean) => void;
}
export default class AlertContainer extends React.Component<AlertContainerProps, any> {
constructor(props: AlertContainerProps);
onClose: () => void;
render(): JSX.Element;
}