# Typealias parameter names

**URL:** https://discuss.kotlinlang.org/t/typealias-parameter-names/25394
**Category:** Language Design
**Created:** [August 6, 2022, 12:19am UTC](https://discuss.kotlinlang.org/t/typealias-parameter-names/25394 "2022-08-06T00:19:48Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![gamegineer](https://sea1.discourse-cdn.com/flex019/user_avatar/discuss.kotlinlang.org/gamegineer/32/9453_2.png) [@gamegineer](https://discuss.kotlinlang.org/u/gamegineer)
#### Post date: [August 6, 2022, 12:19am UTC](https://discuss.kotlinlang.org/t/typealias-parameter-names/25394/1 "2022-08-06T00:19:48Z")

</div>

Currently unable to assign parameter names in a typealias

typealias FooBarPair = Pair\<Int, Int\>

Propose ability to name the parameters for improved clarity:

typealias FooBarPair = Pair\<foo: Int, bar: Int\>
