UNPKG

goobs-frontend

Version:

A comprehensive React-based libary for building modern web applications

12 lines 321 B
import { default as React } from 'react'; export interface ImageProps { url: string; alt?: string; width?: number; height?: number; } declare const useImage: (props: { image?: ImageProps | ImageProps[]; }) => React.ReactElement[] | null; export default useImage; //# sourceMappingURL=useImage.d.ts.map