정산조회 - 정산내역 리스트 및 상세

This commit is contained in:
focp212@naver.com
2025-09-18 09:45:10 +09:00
parent 22bdd45f0a
commit 746358dfe1
42 changed files with 1388 additions and 704 deletions

View File

@@ -37,6 +37,10 @@ export enum HeaderType {
LeftArrow = 'LeftArrow',
RightClose = 'RightClose',
};
export enum AltMsgKeys {
Fold = '접기',
UnFold = '펼치기',
};
export interface FilterRangeAmountProps {
title?: string;
minAmount?: number | string;
@@ -172,4 +176,8 @@ export interface EmptyTokenAddSendCodeParams {
export interface EmptyTokenAddSendCodeResponse {
expiresIn: string;
authCode: string;
};
export interface DetailArrowProps {
show?: boolean;
};