PromucFlow_constructor/app/client/src/constants/FieldExpectedValue.ts
2021-07-26 11:20:46 +05:30

11 lines
206 B
TypeScript

const FIELD_VALUES: Record<"API_ACTION", Record<string, string>> = {
API_ACTION: {
body: "JSON",
params: "string",
headers: "string",
path: "string",
},
};
export default FIELD_VALUES;