diff options
| author | mihailo.vojinovic <mihailonvojinovic@gmail.com> | 2026-02-04 14:33:00 +0100 |
|---|---|---|
| committer | mihailo.vojinovic <mihailonvojinovic@gmail.com> | 2026-02-04 14:33:00 +0100 |
| commit | 6b248da26da2014f10523e50cf801fea4a0aa1be (patch) | |
| tree | dd5529170cdf61c54a328eff4bf2c9cbe4024ad9 | |
| parent | a67e5b9e0510585f414cbe2286b29bb3178ee9ae (diff) | |
| download | invoice-6b248da26da2014f10523e50cf801fea4a0aa1be.tar.gz invoice-6b248da26da2014f10523e50cf801fea4a0aa1be.zip | |
Fix the typo in models
| -rw-r--r-- | src/models/invoice.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/invoice.ts b/src/models/invoice.ts index d6e47c1..2b37657 100644 --- a/src/models/invoice.ts +++ b/src/models/invoice.ts @@ -24,5 +24,5 @@ export const Invoice = z.object({ }); export type Currency = z.infer<typeof Currency>; -export type Invice = z.infer<typeof Invoice>; +export type Invoice = z.infer<typeof Invoice>; export type LineItem = z.infer<typeof LineItem>; |
