type Params = { host_id: number; }; export default function deriveIptablesChainNames({ host_id }: Params) { return { forward: `WGUI${host_id}FWD`, input: `WGUI${host_id}IN`, }; }