UNPKG
@pfantato/printful-ts
Version:
latest (0.0.1)
0.0.1
Typescript SDK to integrate with Printful
github.com/pfantato/printful-ts
pfantato/printful-ts
@pfantato/printful-ts
/
lib
/
errors
/
request.error.d.ts
6 lines
(5 loc)
•
226 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
PrintfulError
,
PrintfulErrorCode
}
from
'./printful.error'
;
export
declare
class
RequestError
extends
PrintfulError
{
status
:
number
;
constructor
(
message
:
string
,
status
?:
number
,
code
?:
PrintfulErrorCode
); }