react-antd-admin-panel
Version:
Easy prototyping admin panel using React and Antd
19 lines (18 loc) • 530 B
TypeScript
import { ReactNode } from "react";
import { Default } from "../../index";
type TypeStatus = 'success' | 'error' | 'info' | 'warning' | '404' | '403' | '500';
export default class Result extends Default {
constructor();
natives: string[];
_extra: ReactNode;
extra(v: ReactNode): this;
_icon: ReactNode;
icon(v: ReactNode): this;
_status: any;
status(v: TypeStatus): this;
_subTitle: ReactNode;
subTitle(v: ReactNode): this;
_title: ReactNode;
title(v: ReactNode): this;
}
export {};