@aliretail/react-materials-components
Version:
14 lines (13 loc) • 405 B
TypeScript
import * as React from 'react';
export interface LogisticsInterceptionStatusProps {
/** 是否拦截 */
interception: boolean;
/** 待拦截数 */
pending?: number;
/** 成功个数 */
success?: number;
/** 失败个数 */
failed?: number;
}
declare const LogisticsInterceptionStatus: React.FC<LogisticsInterceptionStatusProps>;
export default LogisticsInterceptionStatus;