Typescript interfaces documentation

Hi,

Is there any way to have proper documentation on Typescript interfaces? I declared mine in an external d.ts file, but when I try to implement them into a method, then click on this method documentation, I have "No documentation found" text.

public input(config: InputConfig, parent: string): JQuery {
// code here
return $();
}
interface InputConfig {
label: string;
buttons: { label: string, modal: string }[];
disabled: boolean;
}

// But it's possible to "edit source" to go directly to the d.ts file. So it shouldn't be easy to have a nice documentation window? :)
0

Please sign in to leave a comment.