UNPKG
@yankeeinlondon/claudine
Version:
latest (0.4.1)
0.4.1
0.4.0
0.3.2
0.2.0
0.1.0
A simple library to help with Claude Code
@yankeeinlondon/claudine
/
src
/
constants.ts
8 lines
(4 loc)
•
179 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
type
{
BlockingError
,
Error
,
Success
}
from
"./types"
;
export
const
SUCCESS
:
Success
=
0
;
export
const
ERROR
:
Error
=
1
;
export
const
BLOCKING_ERROR
:
BlockingError
=
2
;