UNPKG
@dodi-smart/nuki-graphql-api
Version:
latest (1.2.0)
1.2.0
1.1.2
1.1.1
1.1.0
Nuki GraphQL API
dodi.li
dodi-smart/nuki-graphql-api
@dodi-smart/nuki-graphql-api
/
dist
/
api
/
models
/
Throwable.d.ts
9 lines
•
284 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
StackTraceElement
}
from
'./StackTraceElement'
;
export
type
Throwable
= {
cause
?:
Throwable
;
stackTrace
?:
Array
<
StackTraceElement
>;
message
?:
string
;
localizedMessage
?:
string
;
suppressed
?:
Array
<
Throwable
>; };
//# sourceMappingURL=Throwable.d.ts.map