UNPKG
@yankeeinlondon/promptly
Version:
latest (0.1.0)
0.1.0
An automation tool for prompting your favorite LLMs
@yankeeinlondon/promptly
/
src
/
errors.ts
10 lines
(6 loc)
•
255 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ createKindError }
from
"@yankeeinlondon/kind-error"
;
export
const
InputOutput
=
createKindError
(
"InputOutput"
, );
export
const
ClipboardError
=
createKindError
(
"ClipboardError"
);
export
const
BrowserError
=
createKindError
(
"BrowserError"
);