@carsayo/types 1.1.89096 → 1.1.89097
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -93,6 +93,18 @@ export interface CarGrade {
|
|
|
93
93
|
* @notice 23년 7월 모델: 24
|
|
94
94
|
*/
|
|
95
95
|
modelYear: number;
|
|
96
|
+
/** 배기량
|
|
97
|
+
* @notice NumberString 혹은 빈 String
|
|
98
|
+
*/
|
|
99
|
+
displace: string;
|
|
100
|
+
/** 연료
|
|
101
|
+
* @notice NumberString 혹은 빈 String
|
|
102
|
+
*/
|
|
103
|
+
fuel: string;
|
|
104
|
+
/** 탑승 인원 수
|
|
105
|
+
* @notice NumberString 혹은 빈 String
|
|
106
|
+
*/
|
|
107
|
+
seatingCapacity: string;
|
|
96
108
|
}
|
|
97
109
|
/**
|
|
98
110
|
* @description 차량 색상
|