main
Last change
on this file since 057453c was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago |
feat: implement employees
|
-
Property mode
set to
100644
|
File size:
534 bytes
|
Rev | Line | |
---|
[057453c] | 1 | import { z } from 'zod';
|
---|
| 2 | import {
|
---|
| 3 | employeeSchema,
|
---|
| 4 | employeeStatusSchema,
|
---|
| 5 | employeeTableFilterValueSchema,
|
---|
| 6 | employeeTableFiltersSchema,
|
---|
| 7 | newEmployeeSchema,
|
---|
| 8 | } from '../employee';
|
---|
| 9 |
|
---|
| 10 | export type EmployeeTableFilters = z.infer<typeof employeeTableFiltersSchema>;
|
---|
| 11 | export type EmployeeTableFilterValue = z.infer<typeof employeeTableFilterValueSchema>;
|
---|
| 12 |
|
---|
| 13 | export type EmployeeStatus = z.infer<typeof employeeStatusSchema>;
|
---|
| 14 | export type Employee = z.infer<typeof employeeSchema>;
|
---|
| 15 | export type NewEmployee = z.infer<typeof newEmployeeSchema>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.