fix(core): update

This commit is contained in:
Philipp Kunz 2020-07-04 16:57:05 +00:00
parent ca0c191a8d
commit d3fc1d3256

View File

@ -1,5 +1,12 @@
export interface ITypedRequest {
method: string;
authInfo?: {
jwt: string;
};
serverData?: {
jwtData: any;
jwtValid: boolean;
};
request: object;
response: object;
error?: { text: string; data: any };