table-render-test
Version:
中后台表格解决方案
18 lines (17 loc) • 790 B
TypeScript
import React from 'react';
export declare const renderEllipsis: (dom: JSX.Element, text: any, item: {
ellipsis: any;
}) => React.JSX.Element;
export declare const renderCopyable: (text: any, item: {
copyable: any;
ellipsis: any;
}) => any;
export declare const renderCode: (code: string) => React.JSX.Element;
export declare const renderProgress: (value: any, props: any) => React.JSX.Element;
export declare const renderTag: (value: any, props: any) => React.JSX.Element;
export declare const renderTags: (_value: any, item: any) => React.JSX.Element;
export declare const renderImage: (value: any, props: any) => React.JSX.Element;
export declare const renderDom: (value: any, item: any, extra?: {
record: any;
index: number;
}) => React.JSX.Element;