Interface EmployeeDirectory

interface EmployeeDirectory {
    employees: Employee[];
    fields: { id: keyof Fields; name: string; type: string };
}

Properties

Properties

employees: Employee[]
fields: { id: keyof Fields; name: string; type: string }