mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 12:37:42 +08:00
38 lines
583 B
TypeScript
38 lines
583 B
TypeScript
|
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;
|
||
|
}
|