@aliretail/react-materials-components
Version:
19 lines (18 loc) • 487 B
TypeScript
import * as React from 'react';
import { FLAG_MAP } from '../utils';
/** 旗帜类型 */
export declare type FlagType = keyof typeof FLAG_MAP;
export interface Remark {
content: string;
operatorName: string;
remarkTime: string;
tagCode: FlagType;
}
export interface RemarkListProps {
/** 数据源 */
dataSource: Remark[];
/** 弹框标题 */
dialogTitle: React.ReactNode;
}
declare const RemarkList: React.FC<RemarkListProps>;
export default RemarkList;