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

13 lines
267 B
TypeScript
Raw Normal View History

type FenceAutocompleteOption = {
fenceDescription: string;
fenceId: string;
label: string;
};
type AddFenceInputGroupOptionalProps = {
fenceTemplate?: APIFenceTemplate;
loading?: boolean;
};
type AddFenceInputGroupProps = AddFenceInputGroupOptionalProps;