JSDoc 中文网

语法

¥Syntax

@since <versionDescription>

概述

¥Overview

@since 标记表示在特定版本中添加了类、方法或其他符号。

¥The @since tag indicates that a class, method, or other symbol was added in a specific version.

示例

¥Examples

使用@since 标签
/**

 * Provides access to user information.

 * @since 1.0.1
 */
function UserRecord() {}