As far as I know, TypeScript tends to be documented like this: ``` /** * Run the provided promise, and call process.exit with an appropriate code. */ export function runPromise<T>(promise: Promise<T>): void { ``` In `js2-mode`, I can type: ``` /** ``` and press `C-M-j`, to get: ``` /** * */ ``` with point at the end of the second line. This would be a nice feature to have in `typescript.el`, as well.