6

I want to create a utility function which creates a checklist by adding an isChecked knockout observable property to each item in an array. This function should look like this:

createCheckList<T>(allEntities: T[], selected: T[]) : CheckListItem<T> {
    ...
}

I am returning a CheckListItem<T> because this interface should extend T to add the isChecked property. However, typescript will not allow me to do this:

interface CheckListItem<T> extends T {
    isChecked: KnockoutObservable<boolean>;
}

Gives me the error:

An interface may only extend another class or interface.

Is there any way to do this?

2 Answers 2

7

Since TypeScript 1.6 you can use intersection types:

type CheckListItem<T> = T & {
  isChecked: KnockoutObservable<boolean>;
};
Sign up to request clarification or add additional context in comments.

Comments

3

There isn't a way to express this in TypeScript.

You can obviously do this instead:

interface CheckListItem<T> {
    isChecked: KnockoutObservable<boolean>;
    item: T;
}

This has the advantage of not breaking the object when it happens to have its own isChecked property.

1 Comment

Thanks. Yes, I had considered that but it's rather clumsy IMHO. I've gone with returning an 'any[]' instead as I'm only using the results for knockout binding where type-safety doesn't buy me anything anyway.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.