source: src/schemas/models/employee.ts@ 057453c

main
Last change on this file since 057453c was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 5 weeks ago

feat: implement employees

  • Property mode set to 100644
File size: 534 bytes
Line 
1import { z } from 'zod';
2import {
3 employeeSchema,
4 employeeStatusSchema,
5 employeeTableFilterValueSchema,
6 employeeTableFiltersSchema,
7 newEmployeeSchema,
8} from '../employee';
9
10export type EmployeeTableFilters = z.infer<typeof employeeTableFiltersSchema>;
11export type EmployeeTableFilterValue = z.infer<typeof employeeTableFilterValueSchema>;
12
13export type EmployeeStatus = z.infer<typeof employeeStatusSchema>;
14export type Employee = z.infer<typeof employeeSchema>;
15export type NewEmployee = z.infer<typeof newEmployeeSchema>;
Note: See TracBrowser for help on using the repository browser.