UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

14 lines (13 loc) 483 B
import React from "react"; import { CardFieldBaseProps } from "./shared"; export interface ImageDisplayProps { src: string; alt: string; } export declare const ImageDisplay: React.FC<ImageDisplayProps>; export interface CardFieldImageProps extends Omit<CardFieldBaseProps, "fallbackPredicate">, React.PropsWithChildren { type: "image"; value?: string; } export declare const CardFieldImage: React.FC<Omit<CardFieldImageProps, "type">>; export default CardFieldImage;