UNPKG

442 BTypeScriptView Raw
1import * as React from 'react';
2import { ResultPropsType } from './PropsType';
3export interface ResultProps extends ResultPropsType {
4 prefixCls?: string;
5 className?: string;
6 style?: React.CSSProperties;
7}
8export default class Result extends React.Component<ResultProps, any> {
9 static defaultProps: {
10 prefixCls: string;
11 buttonType: string;
12 onButtonClick: () => void;
13 };
14 render(): JSX.Element;
15}