13 lines
315 B
TypeScript
13 lines
315 B
TypeScript
export interface CustomerDetailHeaderProps {
|
|
company: string;
|
|
fullname?: string | null;
|
|
active: string;
|
|
datecreated?: string | null;
|
|
email?: string | null;
|
|
phonenumber?: string | null;
|
|
website?: string | null;
|
|
onEmailPress?: () => void;
|
|
onPhonePress?: () => void;
|
|
onWebsitePress?: () => void;
|
|
}
|