12 lines
330 B
TypeScript
12 lines
330 B
TypeScript
type AddUpsInputGroupOptionalProps = {
|
|
loading?: boolean;
|
|
previous?: CommonUpsInputGroupOptionalProps['previous'] & {
|
|
upsTypeId?: string;
|
|
};
|
|
upsTemplate?: APIUpsTemplate;
|
|
};
|
|
|
|
type AddUpsInputGroupProps<M extends MapToInputTestID> =
|
|
AddUpsInputGroupOptionalProps &
|
|
Pick<CommonUpsInputGroupProps<M>, 'formUtils'>;
|