@opensig/opendesign
Version:
29 lines (28 loc) • 524 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
const ResultStatusTypes = ["info", "success", "warning", "danger"];
const resultProps = {
/**
* @zh-CN 状态
* @en-US Status.
*/
status: {
type: String
},
/**
* @zh-CN 标题
* @en-US Title.
*/
title: {
type: String
},
/**
* @zh-CN 描述
* @en-US Description.
*/
description: {
type: String
}
};
exports.ResultStatusTypes = ResultStatusTypes;
exports.resultProps = resultProps;