documentation/test/fixture/alias.input.js
2015-12-07 13:04:01 -05:00

9 lines
191 B
JavaScript

/**
* This is a method that has an alias tag: so it should
* be referred to as nixon, but should still have inference.
* @alias nixon
*/
function dewey(a: number): number {
return a;
}