/** * 请求状态装饰器 * class decorator: target: constructor recommend use target.prototype * method decorator: target: raw vue recommend use this */ declare const ConditionStatus: { Add?: Function; Update?: Function; Rest?: Function; Validate?: Function; }; export default ConditionStatus;