Skip to content

Commit

Permalink
[Fix] [GGFE-243] mock api 타입 빌드 에러 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
PHJoon committed Sep 11, 2023
1 parent 6069d70 commit 53b255e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pages/api/pingpong/admin/receipt/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const receipt1: Ireceipt = {
itemPrice: 42,
purchaserIntraId: 'hyungjpa',
ownerIntraId: 'hyungjpa',
itemStatusType: '사용 전',
itemStatusType: 'BEFORE',
};

const receipt2: Ireceipt = {
Expand All @@ -23,7 +23,7 @@ const receipt2: Ireceipt = {
itemPrice: 21,
purchaserIntraId: 'jeyoon',
ownerIntraId: 'hyobicho',
itemStatusType: '사용 완료',
itemStatusType: 'USED',
};

const receipt3: Ireceipt = {
Expand All @@ -33,7 +33,7 @@ const receipt3: Ireceipt = {
itemPrice: 10,
purchaserIntraId: 'sangmipa',
ownerIntraId: 'jeyoon',
itemStatusType: '사용 완료',
itemStatusType: 'USED',
};

const receipt4: Ireceipt = {
Expand All @@ -43,7 +43,7 @@ const receipt4: Ireceipt = {
itemPrice: 42,
purchaserIntraId: 'hyobicho',
ownerIntraId: 'sangmipa',
itemStatusType: '사용 전',
itemStatusType: 'BEFORE',
};

const receipt5: Ireceipt = {
Expand All @@ -53,7 +53,7 @@ const receipt5: Ireceipt = {
itemPrice: 21,
purchaserIntraId: 'jeyoon',
ownerIntraId: 'hyungjpa',
itemStatusType: '사용 완료',
itemStatusType: 'USED',
};

const receipt6: Ireceipt = {
Expand All @@ -63,7 +63,7 @@ const receipt6: Ireceipt = {
itemPrice: 10,
purchaserIntraId: 'hyungjpa',
ownerIntraId: 'hyobicho',
itemStatusType: '사용 완료',
itemStatusType: 'USED',
};

const receipt7: Ireceipt = {
Expand All @@ -73,7 +73,7 @@ const receipt7: Ireceipt = {
itemPrice: 42,
purchaserIntraId: 'hyobicho',
ownerIntraId: 'jeyoon',
itemStatusType: '사용 전',
itemStatusType: 'BEFORE',
};

const receipt8: Ireceipt = {
Expand All @@ -83,7 +83,7 @@ const receipt8: Ireceipt = {
itemPrice: 21,
purchaserIntraId: 'sangmipa',
ownerIntraId: 'sangmipa',
itemStatusType: '사용 완료',
itemStatusType: 'USED',
};

const receipt9: Ireceipt = {
Expand All @@ -93,7 +93,7 @@ const receipt9: Ireceipt = {
itemPrice: 10,
purchaserIntraId: 'jeyoon',
ownerIntraId: 'hyungjpa',
itemStatusType: '사용 완료',
itemStatusType: 'USED',
};

const receipt10: Ireceipt = {
Expand All @@ -103,7 +103,7 @@ const receipt10: Ireceipt = {
itemPrice: 10,
purchaserIntraId: 'sangmipa',
ownerIntraId: 'hyungjpa',
itemStatusType: '사용 완료',
itemStatusType: 'USED',
};

const receiptList: Array<Ireceipt> = [
Expand Down

0 comments on commit 53b255e

Please sign in to comment.