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

Properties in union type not type checking #22268

Closed
OliverJAsh opened this issue Mar 1, 2018 · 2 comments
Closed

Properties in union type not type checking #22268

OliverJAsh opened this issue Mar 1, 2018 · 2 comments
Labels
Duplicate An existing issue was already created

Comments

@OliverJAsh
Copy link
Contributor

TypeScript Version: 2.7.2

Search Terms:
union

Code

type Photo = { id: string };

type UserWithoutPhotos = {
    name: string;
};

type UserWithPhotos = UserWithoutPhotos & { photos: Photo[] };

const user: UserWithoutPhotos | UserWithPhotos = {
    name: 'foo',
    // Expected type error, but got none
    photos: 1
};
@ghost
Copy link

ghost commented Mar 1, 2018

Duplicate of #20863

@ghost ghost marked this as a duplicate of #20863 Mar 1, 2018
@ghost ghost added the Duplicate An existing issue was already created label Mar 1, 2018
@typescript-bot
Copy link
Collaborator

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

@microsoft microsoft locked and limited conversation to collaborators Jul 25, 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

2 participants