Co-authored-by: Tanvi Bhakta <tanvibhakta@gmail.com> Co-authored-by: Satish Gandham <hello@satishgandham.com>
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: [],
|
|
};
|