2023-02-18 03:54:38 +00:00
|
|
|
type FenceAutocompleteOption = {
|
|
|
|
fenceDescription: string;
|
|
|
|
fenceId: string;
|
|
|
|
label: string;
|
|
|
|
};
|
|
|
|
|
|
|
|
type AddFenceInputGroupOptionalProps = {
|
|
|
|
fenceTemplate?: APIFenceTemplate;
|
|
|
|
loading?: boolean;
|
|
|
|
};
|
|
|
|
|
2023-06-29 07:58:35 +00:00
|
|
|
type AddFenceInputGroupProps<M extends MapToInputTestID> =
|
|
|
|
AddFenceInputGroupOptionalProps & {
|
|
|
|
formUtils: FormUtils<M>;
|
|
|
|
};
|