9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
type EditUpsInputGroupOptionalProps = {
|
|
loading?: boolean;
|
|
};
|
|
|
|
type EditUpsInputGroupProps = EditUpsInputGroupOptionalProps &
|
|
Pick<AddUpsInputGroupProps, 'previous' | 'upsTemplate'> & {
|
|
upsUUID: string;
|
|
};
|