@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
17 lines • 539 B
TypeScript
/**
* 2024-11-04: Migrated from PhotoFormWebpart
*
*/
import * as React from 'react';
export interface IMultiImagePasteProps {
setParentImageData?: (data: string | null) => void;
imageCount: number;
elementCSS?: React.CSSProperties;
elementClassName?: string;
imageBoxCSS?: React.CSSProperties;
imageCSS?: React.CSSProperties;
preloadImages?: string[];
}
declare const ParentForm: React.FC<IMultiImagePasteProps>;
export default ParentForm;
//# sourceMappingURL=fps-MultiImageParent.d.ts.map