import { IEmployeeList } from '../';
export interface IResourceEmployeesList {
    _embedded: {
        employeePositions: IEmployeeList[];
    };
}
