PromucFlow_constructor/app/client/src/components/editorComponents/emptyResponse.tsx
Ivan Akulov 8a1870daa6
perf: reduce the bundle size, vol. 2 (#24969)
Co-authored-by: Tanvi Bhakta <tanvibhakta@gmail.com>
Co-authored-by: Satish Gandham <hello@satishgandham.com>
2023-07-17 00:19:41 +05:30

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: [],
};