2023-03-01 03:21:15 +00:00
|
|
|
type CommonUpsInputGroupOptionalProps = {
|
|
|
|
previous?: {
|
2023-03-01 20:56:10 +00:00
|
|
|
upsIPAddress?: string;
|
2023-03-01 03:21:15 +00:00
|
|
|
upsName?: string;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-03-04 02:12:24 +00:00
|
|
|
type CommonUpsInputGroupProps<M extends MapToInputTestID> =
|
|
|
|
CommonUpsInputGroupOptionalProps & {
|
|
|
|
formUtils: FormUtils<M>;
|
|
|
|
};
|