@payfit/unity-components
Version:
14 lines (13 loc) • 453 B
TypeScript
export type Employee = {
id: string;
name: string;
position: string;
avatarUrl: string;
team: string;
workingAgreement: 'Full-time' | 'Part-time' | 'Freelance' | 'Contractor';
startWorkingDate: string;
endWorkingDate: string;
status: 'active' | 'onboarding' | 'offboarding' | 'inactive' | 'retired';
manager: Pick<Employee, 'name' | 'position' | 'team'> | null;
};
export declare const mockEmployees: Employee[];