Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F995858
response.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
642 B
Referenced Files
None
Subscribers
None
response.ts
View Options
import
type
SealiousError
from
"./errors.js"
;
export
class
Response
{
status
:
"error"
|
"success"
;
type
:
string
;
status_message
:
string
;
data
:
any
;
constructor
(
data
:
any
,
is_error
:
boolean
,
type
:
string
,
status_message
:
string
)
{
this
.
status
=
is_error
?
"error"
:
"success"
;
this
.
type
=
type
||
"response"
;
this
.
status_message
=
status_message
||
"ok"
;
this
.
data
=
data
||
{};
}
static
fromError
(
sealious_error
:
SealiousError
)
{
return
{
data
:
sealious_error
.
data
||
{},
is_error
:
true
,
type
:
sealious_error
.
type
,
status_message
:
sealious_error
.
message
,
message
:
sealious_error
.
message
,
};
}
}
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Mon, Dec 23, 22:24 (23 h, 48 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
556983
Default Alt Text
response.ts (642 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment