@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
17 lines • 500 B
TypeScript
/**
* 2024-11-04: Migrated from PhotoFormWebpart
*
*/
import * as React from 'react';
export interface IImagePasteProps {
setParentImageData: (data: string | null) => void;
clearId?: string;
viewOnly?: boolean;
imageUrl?: string;
imageBoxCSS?: React.CSSProperties;
imageBoxClassName?: string;
imageCSS?: React.CSSProperties;
}
declare const ImagePaste: React.FC<IImagePasteProps>;
export default ImagePaste;
//# sourceMappingURL=fps-ImagePaste.d.ts.map