Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / presets / Address / typings.d.ts
Size: Mime:
import { AddressProps as AddressPlaceholderProps } from 'abstractions/Address/typings';
export interface AddressType {
    title?: string;
    firstName?: string;
    lastName?: string;
    addressLine1?: string;
    addressLine2?: string;
    country?: string;
    city?: string;
    state?: string;
    postalCode?: string;
}
export interface AddressPresetProps extends AddressPlaceholderProps {
    address?: AddressType;
    title?: string;
}