6 lines
122 B
TypeScript
6 lines
122 B
TypeScript
import type { GatewayId } from './GatewayId';
|
|
export type RenameGatewayParams = {
|
|
id: GatewayId;
|
|
name: string;
|
|
};
|