UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

14 lines (13 loc) 498 B
import React from "react"; import { CardFieldBaseProps } from "./shared"; export interface CardFieldCheckboxProps extends React.PropsWithChildren<Omit<CardFieldBaseProps, "fallback" | "fallbackPredicate">> { isEditable?: boolean; noValue?: string; type: "checkbox"; value: boolean; yesValue?: string; fallback?: never; fallbackPredicate?: never; } export declare const CardFieldCheckbox: React.FC<Omit<CardFieldCheckboxProps, "type">>; export default CardFieldCheckbox;