main
Last change
on this file was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago |
feat: implement employees
|
-
Property mode
set to
100644
|
File size:
753 bytes
|
Line | |
---|
1 | import { z } from 'zod';
|
---|
2 | import {
|
---|
3 | addressSchema,
|
---|
4 | bankAccountSchema,
|
---|
5 | customerSchema,
|
---|
6 | customerStatusSchema,
|
---|
7 | customerTableFilterValueSchema,
|
---|
8 | customerTableFiltersSchema,
|
---|
9 | newCustomerSchema,
|
---|
10 | tenantSchema,
|
---|
11 | } from '../customer';
|
---|
12 |
|
---|
13 | export type CustomerTableFilters = z.infer<typeof customerTableFiltersSchema>;
|
---|
14 | export type CustomerTableFilterValue = z.infer<typeof customerTableFilterValueSchema>;
|
---|
15 |
|
---|
16 | export type Address = z.infer<typeof addressSchema>;
|
---|
17 | export type BankAccount = z.infer<typeof bankAccountSchema>;
|
---|
18 | export type CustomerStatus = z.infer<typeof customerStatusSchema>;
|
---|
19 | export type Customer = z.infer<typeof customerSchema>;
|
---|
20 | export type NewCustomer = z.infer<typeof newCustomerSchema>;
|
---|
21 | export type Tenant = z.infer<typeof tenantSchema>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.