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