anvil/striker-ui/types/AddFenceInputGroup.d.ts
Tsu-ba-me 488ed99370 fix(striker-ui): correct fence management; see details
* add input validation to fix fields, i.e., select agent, and dynamic
  fields, i.e., fence parameters (according to param type)
* connect add, update, delete dialogs to respective back-end endpoints
2023-07-03 04:46:07 -04:00

16 lines
334 B
TypeScript

type FenceAutocompleteOption = {
fenceDescription: string;
fenceId: string;
label: string;
};
type AddFenceInputGroupOptionalProps = {
fenceTemplate?: APIFenceTemplate;
loading?: boolean;
};
type AddFenceInputGroupProps<M extends MapToInputTestID> =
AddFenceInputGroupOptionalProps & {
formUtils: FormUtils<M>;
};