5 lines
121 B
TypeScript
5 lines
121 B
TypeScript
import type { GatewayId } from './GatewayId';
|
|
export type SetDefaultOutboundParams = {
|
|
gateway: GatewayId | null;
|
|
};
|