bananas-commerce-admin
Version:
What's this, an admin for apes?
9 lines (8 loc) • 406 B
TypeScript
import React from "react";
import { ShipmentDestinationType } from "../types/shipment";
export declare const ALL_SELECTED: ShipmentDestinationType[];
export interface ShipmentDestinationButtonsProps {
defaultSelected?: ShipmentDestinationType[];
onChange?: (selected: ShipmentDestinationType[]) => void;
}
export declare const ShipmentDestinationButtons: React.FC<ShipmentDestinationButtonsProps>;