불필요 파일 제거

This commit is contained in:
focp212@naver.com
2025-11-04 11:27:34 +09:00
parent e45043a633
commit 7cbda1a5fb
5 changed files with 0 additions and 218 deletions

View File

@@ -1,33 +0,0 @@
/* eslint-disable @cspell/spellchecker */
/**
* 은행에서 사용하는 코드 모음
*/
export type YN = 'Y' | 'N';
/**
* 은행코드
*/
export const enum BankCode {
A = '011',
B = '004',
}
/**
* 은행이름
*/
export const enum BankName {
A = 'A은행',
B = 'B은행',
}
export const enum BankValue {
A = 'NHB',
B = 'KBB',
}
/**
* 은행코드로 어떤 은행인지 확인
*/
export const isBankA = (bkcd: BankCode) => bkcd === BankCode.A;
export const isBankB = (bkcd: BankCode) => bkcd === BankCode.B;

View File

@@ -1,9 +0,0 @@
/* eslint-disable @cspell/spellchecker */
export interface MyWalletQRCode {
walletAddr: string;
bankCode: string;
}
export interface MyPaymentQRcode extends MyWalletQRCode {
exptime: string; // 'YYYY-MM-DD H:m:s';
}