I have the following classes:
export interface ISimpleUser {
id: number;
full_name: string;
}
export interface IMember extends ng.resource.IResource<IMember> {
id: number;
project: number;
user: number|ISimpleUser;
skills: ISkill[];
about: string;
accepted: Boolean;
updated: Date;
created: Date;
}
At some point I want to iterate over an arroy of members like in the following example:
return angular.forEach<resources.IMember>(this.project.members,
(member: resources.IMember) => {
return member.user.id == user.id;
}).length > 0;
But I get this error:
error TS2339: Property 'id' does not exist on type 'number | ISimpleUser'
Don't know what is wrong exactly. I see other parts of the code working with the union types.
Thanks.
You will need to do some type checking and casting to handle this scenario:
Just because you know the possible types at code/design time does not mean that the compiles code knows types at run time. So you can check the type of
member.user
to see if it is a number then conditionally do your comparison.