Closed
Description
Hi,
In the following
// file A
module foo {
export interface Bar {}
}
// file B
module foofoo {
/** Defines options for creating an instance of @see foo.Bar */
export interface BarOptions {
}
}
it will be useful if the text referenced by @see (i.e. foo.Bar
) is hyperlinked to interface Bar
in file A
.