katoikia-app/web-ui/web-react/node_modules/primereact/image/image.d.ts

20 lines
426 B
TypeScript

import * as React from 'react';
export interface ImageProps {
preview?: boolean;
className?: string;
downloadable?: boolean;
style?: string;
imageStyle?: string;
imageClassName?: string;
template?: any;
src?: string;
alt?: string;
width?: string;
height?: string;
onShow?(): void;
onHide?(): void;
}
export declare class Image extends React.Component<ImageProps, any> { }