UNPKG

@mikezimm/fps-library-v2

Version:

Library of reusable typescript/javascript functions, interfaces and constants

20 lines 1.07 kB
import * as React from 'react'; import { ISourceProps } from '@mikezimm/fps-core-v7/lib/components/molecules/source-props/ISourceProps'; import { IFileDropBoxProps } from '@mikezimm/fps-core-v7/lib/components/atoms/Inputs/FileDropBox/IFileDropBoxProps'; export interface IFileDropContainerParent { FilesSource: ISourceProps; fileDropBoxProps: IFileDropBoxProps; } /*** * .d8888. d888888b .d8b. d8888b. d888888b db db .d88b. .d88b. db dD * 88' YP `~~88~~' d8' `8b 88 `8D `~~88~~' 88 88 .8P Y8. .8P Y8. 88 ,8P' * `8bo. 88 88ooo88 88oobY' 88 88ooo88 88 88 88 88 88,8P * `Y8b. 88 88~~~88 88`8b 88 88~~~88 88 88 88 88 88`8b * db 8D 88 88 88 88 `88. 88 88 88 `8b d8' `8b d8' 88 `88. * `8888Y' YP YP YP 88 YD YP YP YP `Y88P' `Y88P' YP YD * * */ declare const ParentComponent: React.FC<IFileDropContainerParent>; export default ParentComponent; //# sourceMappingURL=ParentFileSample.d.ts.map