File "CountryInputProps.ts"

Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/country-input/CountryInputProps.ts
File size: 366 B
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

export interface CountryInputProps {
	className?: string;
	label: string;
	id: string;
	autoComplete?: string;
	value: string;
	onChange: ( value: string ) => void;
	required?: boolean;
	errorMessage?: string;
	errorId: null | 'shipping-missing-country';
}

export type CountryInputWithCountriesProps = CountryInputProps & {
	countries: Record< string, string >;
};