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:
831 bytes
|
Line | |
---|
1 | import { z } from 'zod';
|
---|
2 | import {
|
---|
3 | createInvoiceSchema,
|
---|
4 | invoiceItemSchema,
|
---|
5 | invoiceSchema,
|
---|
6 | invoiceStatusSchema,
|
---|
7 | invoiceTableFilterValueSchema,
|
---|
8 | invoiceTableFiltersSchema,
|
---|
9 | monthSchema,
|
---|
10 | serviceSchema,
|
---|
11 | updateInvoiceSchema,
|
---|
12 | } from '../invoice';
|
---|
13 |
|
---|
14 | export type InvoiceTableFilterValue = z.infer<typeof invoiceTableFilterValueSchema>;
|
---|
15 | export type InvoiceTableFilters = z.infer<typeof invoiceTableFiltersSchema>;
|
---|
16 |
|
---|
17 | export type Service = z.infer<typeof serviceSchema>;
|
---|
18 | export type InvoiceItem = z.infer<typeof invoiceItemSchema>;
|
---|
19 | export type InvoiceStatus = z.infer<typeof invoiceStatusSchema>;
|
---|
20 | export type Month = z.infer<typeof monthSchema>;
|
---|
21 | export type Invoice = z.infer<typeof invoiceSchema>;
|
---|
22 | export type CreateInvoice = z.infer<typeof createInvoiceSchema>;
|
---|
23 | export type UpdateInvoice = z.infer<typeof updateInvoiceSchema>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.