anvil/striker-ui/types/AddFenceInputGroup.d.ts

16 lines
334 B
TypeScript
Raw Normal View History

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