Álvaro Valenzuela Valdes commited on
Commit ·
ed7c3f7
1
Parent(s): e7df975
fix: Replace str with string in types
Browse files- frontend/lib/types.ts +4 -4
frontend/lib/types.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
| 1 |
export type TenderItem = {
|
| 2 |
-
name:
|
| 3 |
quantity: number;
|
| 4 |
-
unit:
|
| 5 |
};
|
| 6 |
|
| 7 |
export type TenderAttachment = {
|
| 8 |
-
name:
|
| 9 |
-
url:
|
| 10 |
};
|
| 11 |
|
| 12 |
export type Tender = {
|
|
|
|
| 1 |
export type TenderItem = {
|
| 2 |
+
name: string;
|
| 3 |
quantity: number;
|
| 4 |
+
unit: string;
|
| 5 |
};
|
| 6 |
|
| 7 |
export type TenderAttachment = {
|
| 8 |
+
name: string;
|
| 9 |
+
url: string;
|
| 10 |
};
|
| 11 |
|
| 12 |
export type Tender = {
|