10 lines
266 B
TypeScript
10 lines
266 B
TypeScript
import type { ProFieldFC } from '../../index';
|
|
import 'antd/lib/image/style';
|
|
export type FieldImageProps = {
|
|
text: string;
|
|
width?: number;
|
|
placeholder?: string | string[];
|
|
};
|
|
declare const _default: ProFieldFC<FieldImageProps>;
|
|
export default _default;
|