fix(SW-3691): Setup one prettier config for whole repo * Setup prettierrc in root and remove other configs Approved-by: Joakim Jäderberg Approved-by: Linus Flood
21 lines
448 B
TypeScript
21 lines
448 B
TypeScript
import type { RegisterOptions } from "react-hook-form"
|
|
|
|
export interface PhoneProps {
|
|
ariaLabel?: string
|
|
className?: string
|
|
countryLabel?: string
|
|
countrySelectorName?: string
|
|
countriesWithTranslatedName: {
|
|
code: string
|
|
displayName?: string
|
|
name: string
|
|
}[]
|
|
disabled?: boolean
|
|
errorMessage?: string
|
|
label: string
|
|
defaultCountryCode: string
|
|
name?: string
|
|
placeholder?: string
|
|
registerOptions?: RegisterOptions
|
|
}
|