18 lines
306 B
TypeScript
18 lines
306 B
TypeScript
|
|
import type { ActionResponse } from "api/ActionAPI";
|
||
|
|
|
||
|
|
export const EMPTY_RESPONSE: ActionResponse = {
|
||
|
|
statusCode: "",
|
||
|
|
duration: "",
|
||
|
|
body: "",
|
||
|
|
headers: {},
|
||
|
|
request: {
|
||
|
|
headers: {},
|
||
|
|
body: {},
|
||
|
|
httpMethod: "",
|
||
|
|
url: "",
|
||
|
|
},
|
||
|
|
size: "",
|
||
|
|
responseDisplayFormat: "",
|
||
|
|
dataTypes: [],
|
||
|
|
};
|