refactor(FE-316, 438): Move uniformity types into shared types file

This commit is contained in:
rstubryan
2025-12-29 13:30:16 +07:00
parent 4ed1e4f8b5
commit 4529ee50e3
5 changed files with 18 additions and 27 deletions
+12
View File
@@ -87,3 +87,15 @@ export type VerifyUniformityPayload = {
file: File;
week: number;
};
// ==================== OTHER TYPES ====================
export type BodyWeightData = {
id: string;
number: number;
weight: number;
status?: 'ideal' | 'outside';
};
export type DetailOptionType = OptionType & {
id: string;
};