@use JSDoc

概觀

@readonly 標籤表示符號預設為唯讀。請注意,這僅用於文件目的 - JSDoc 檢查您是否實際上在程式碼中將符號視為唯讀。

範例

使用 @readonly 標籤
/**
 * A constant.
 * @readonly
 * @const {number}
 */
const FOO = 1;
使用 @readonly 標籤與 getter
/**
 * Options for ordering a delicious slice of pie.
 * @namespace
 */
var pieOptions = {
	/**
	 * Plain.
	 */
	plain: 'pie',
	/**
	 * A la mode.
	 * @readonly
	 */
	get aLaMode() {
		return this.plain + ' with ice cream';
	}
};