zent
Version:
一套前端设计语言和基于React的实现
9 lines (8 loc) • 322 B
TypeScript
import { FC } from 'react';
import { IAlertProps } from '../alert';
export declare type StatusBarType = 'info' | 'waiting' | 'success' | 'error';
export interface IStatusBarProps extends Omit<IAlertProps, 'type'> {
type?: StatusBarType;
}
export declare const StatusBar: FC<IStatusBarProps>;
export default StatusBar;