@progressive-development/pd-contact
Version:
Progressive Development Contact component
47 lines • 1.38 kB
TypeScript
export declare const C_TYPE = "type";
export declare const C_COMPANY = "companyName";
export declare const C_BTWNR = "vatNr";
export declare const C_FIRSTNAME = "firstName";
export declare const C_LASTNAME = "lastName";
export declare const C_STREET = "street";
export declare const C_STREET_NR = "streetNr";
export declare const C_CITY = "city";
export declare const C_ZIP = "zip";
export declare const C_ADDITIONAL = "additionalHint";
export declare const C_PROPERTY_DATE = "propertyDate";
export declare const C_PHONE1 = "phone1";
export declare const C_EMAIL = "email";
export interface PdContactData {
business?: boolean;
companyName?: string;
vatNr?: string;
firstName?: string;
lastName?: string;
street?: string;
streetNr?: string;
zip?: string;
city?: string;
additionalHint?: string;
propertyDate?: string;
phone1?: string;
email?: string;
country?: string;
btw?: string;
kbc?: string;
bank?: string;
}
export interface PdContactMatch {
zip?: string;
[key: string]: string | undefined;
}
export interface PdContactFormOptions {
addressTitle?: string;
phoneMailLink?: boolean;
summary?: boolean;
withPropertyDate?: boolean;
requiredFields?: string[];
inputFields?: string[];
contact?: PdContactData;
match?: PdContactMatch;
}
//# sourceMappingURL=types.d.ts.map