PromucFlow_constructor/app/client/src/constants/FieldExpectedValue.ts

11 lines
206 B
TypeScript
Raw Normal View History

const FIELD_VALUES: Record<"API_ACTION", Record<string, string>> = {
2020-06-04 13:49:22 +00:00
API_ACTION: {
body: "JSON",
params: "string",
headers: "string",
path: "string",
},
};
export default FIELD_VALUES;