mid 관련 수정

This commit is contained in:
focp212@naver.com
2025-10-22 17:19:16 +09:00
parent 556b3f2a6a
commit e857b8ac05
29 changed files with 262 additions and 218 deletions

View File

@@ -1,5 +1,12 @@
import { AxiosError } from 'axios';
export type NiceAxiosError = AxiosError<{
errorCode?: string;
code?: string;
message?: string;
data?: any;
status?: string;
}>;
export type CBDCAxiosError = AxiosError<{
errorCode?: string;
code?: string;
@@ -12,3 +19,7 @@ export interface CBDCAxiosFallbackProps {
error: CBDCAxiosError;
resetErrorBoundary?: (...args: unknown[]) => void;
}
export interface NiceAxiosFallbackProps {
error: NiceAxiosError;
resetErrorBoundary?: (...args: unknown[]) => void;
}