@cityssm/avanti-api
Version:
An unofficial wrapper around the Avanti API.
22 lines (21 loc) • 424 B
TypeScript
interface PhoneType {
type: string;
isWork: boolean;
isPhone: boolean;
}
export declare const phoneTypes: Record<number, PhoneType>;
interface EmailType {
type: string;
}
export declare const emailTypes: Record<number, EmailType>;
export declare const vacationCodes: {
0: string;
1: string;
2: string;
3: string;
};
export declare const glTypes: {
a: string;
g: string;
};
export {};