Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The generics don't work with the type of a key value object #16957

Closed
zabirauf opened this issue Jul 5, 2017 · 3 comments
Closed

The generics don't work with the type of a key value object #16957

zabirauf opened this issue Jul 5, 2017 · 3 comments
Labels
Duplicate An existing issue was already created

Comments

@zabirauf
Copy link

zabirauf commented Jul 5, 2017

TypeScript Version: 2.4.0 / nightly (2.5.0-dev.201xxxxx)

Code

// A *self-contained* demonstration of the problem follows...
function test<T extends string | number>(a: T): {[key: T]: boolean} {
    const map: { [key: T]: boolean } = {};
    return map;
}

Expected behavior:
The type system should not complain that the key type of map should be string or number.

Actual behavior:
It gives error that the key of map should be string or number even though T is string or number

@snewell92
Copy link

Possibly related

type Key = string | number;

const dict: { [index: Key]: any } = {};

@mhegazy
Copy link
Contributor

mhegazy commented Aug 26, 2017

duplicate of #16760 #14934

@mhegazy mhegazy added the Duplicate An existing issue was already created label Aug 26, 2017
@mhegazy
Copy link
Contributor

mhegazy commented Sep 11, 2017

Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed.

@mhegazy mhegazy closed this as completed Sep 11, 2017
@microsoft microsoft locked and limited conversation to collaborators Jun 14, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Duplicate An existing issue was already created
Projects
None yet
Development

No branches or pull requests

3 participants