InnerAddressInputProps: {
    concat?: false;
    detail?: false;
    direction?: never;
    value?: string;
    onChange?(value): void;
} | {
    concat?: boolean;
    detail: true;
    direction?: "vertical" | "horizontal";
    value?: [string, string];
    onChange?(value): void;
}

Type declaration

  • Optional concat?: false
  • Optional detail?: false
  • Optional direction?: never
  • Optional value?: string
  • onChange?:function

Type declaration

  • Optional concat?: boolean
  • detail: true
  • Optional direction?: "vertical" | "horizontal"
  • Optional value?: [string, string]
  • onChange?:function

Generated using TypeDoc