File "StateInputProps.ts"
Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/base/components/state-input/StateInputProps.ts
File
size: 345 B
MIME-type: text/plain
Charset: utf-8
Download Open Edit Advanced Editor Back
export interface StateInputProps {
className?: string;
label: string;
id: string;
autoComplete?: string;
value: string;
country: string;
onChange: ( value: string ) => void;
required?: boolean;
errorMessage?: string;
}
export type StateInputWithStatesProps = StateInputProps & {
states: Record< string, Record< string, string > >;
};