#青训营笔记创作活动#
1月27日 打卡day13
今日学习
TSDoc官网:tsdoc.org/
export class Statistics {
/**
* Returns the average of two numbers.
*
* @remarks
* This method is part of the {@link core-library#Statistics | Statistics subsystem}.
*
* @param x - The first input number
* @param y - The second input number
* @returns The arithmetic mean of `x` and `y`
*
* @beta
*/
public static getAverage(x: number, y: number): number {
return (x + y) / 2.0;
}
}

TSDoc规范
需要TSDoc解析器@microsoft/tsdoc
取API信息、统计报告、注释检查、文档生成api-extractror
TypeDoc,它集成了API信息提取、文档生成、站点生成
展开
评论