sort 관련 정리

This commit is contained in:
focp212@naver.com
2025-10-15 17:12:57 +09:00
parent 368b553bda
commit faccd7bd91
30 changed files with 439 additions and 258 deletions

View File

@@ -10,22 +10,12 @@ import type { ExtensionSmsDetailResponse } from './sms-payment/types';
// 공통 Enums 및 타입들
// ========================================
export enum SortByKeys {
New = 'New',
Amount = 'Amount',
}
export enum ProcessResult {
ALL = 'ALL',
SUCCESS = 'SUCCESS',
FAIL = 'FAIL'
}
export interface SortOptionsBoxProps {
sortBy: SortByKeys;
onClickToSort: (sortBy: SortByKeys) => void;
}
// 부가서비스 카테고리 enum
export enum AdditionalServiceCategory {
KeyInPayment = 'KeyInPayment',