UNPKG
@bcsdlab/koin
Version:
latest (0.0.15)
0.0.15
0.0.14
0.0.13
0.0.12
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
bcsdlab 코인 유틸 모음입니다.
github.com/BCSDLab/FRONT_KOIN_LIBRARY
BCSDLab/FRONT_KOIN_LIBRARY
@bcsdlab/koin
/
dist
/
koinError
/
index.d.ts
10 lines
(9 loc)
•
362 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** 코인 서버 에러 인터페이스입니다. message, code를 담고있습니다. */
export
interface
KoinError
{
type
:
"KOIN_ERROR"
;
status
:
number
;
code
:
number
;
message
:
string
; }
/** 해당 에러가 코인 서버에서 발생한 에러인지 판별합니다. */
export
declare
function
isKoinError
(
error
:
unknown
): error is
KoinError
;