You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
583 B
38 lines
583 B
import { AntdComponent } from './component';
|
|
|
|
export declare class Result extends AntdComponent {
|
|
/**
|
|
* result title
|
|
* @type string
|
|
*/
|
|
title: any;
|
|
|
|
/**
|
|
* result sub title
|
|
*
|
|
* @type string
|
|
*/
|
|
subTitle: any;
|
|
|
|
/**
|
|
* result status,decide icons and colors
|
|
* enum of 'success' | 'error' | 'info' | 'warning'| '404' | '403' | '500'` | 'info'
|
|
*
|
|
* @default 'info'
|
|
* @type string
|
|
*/
|
|
status: string;
|
|
|
|
/**
|
|
* custom back icon
|
|
* @type any v-slot
|
|
*/
|
|
icon: any;
|
|
|
|
/**
|
|
* operating area
|
|
* @type any v-slot
|
|
*/
|
|
extra: any;
|
|
}
|