mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
9 lines
191 B
JavaScript
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;
|
|
}
|