PromucFlow_constructor/app/client/src/components/editorComponents/emptyResponse.tsx

18 lines
306 B
TypeScript
Raw Normal View History

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