Álvaro Valenzuela Valdes commited on
Commit
ed7c3f7
·
1 Parent(s): e7df975

fix: Replace str with string in types

Browse files
Files changed (1) hide show
  1. frontend/lib/types.ts +4 -4
frontend/lib/types.ts CHANGED
@@ -1,12 +1,12 @@
1
  export type TenderItem = {
2
- name: str;
3
  quantity: number;
4
- unit: str;
5
  };
6
 
7
  export type TenderAttachment = {
8
- name: str;
9
- url: str;
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 = {