@cainiaofe/cn-ui-m
Version:
15 lines (14 loc) • 391 B
TypeScript
import './index.scss';
interface IToolTipItem {
desc: string;
}
interface IValueObject {
link?: string;
text: string;
toolTips?: IToolTipItem[] | string;
[key: string]: any;
}
type ICnFormatTextValue = string | IValueObject;
export declare const renderValueHandleEmpty: (value: any) => any;
export declare const textRender: (value: ICnFormatTextValue) => any;
export {};