This commit is contained in:
Chen Lily 2024-06-07 16:16:10 +08:00
parent 614a983aa8
commit f5b6ce360e

View File

@ -71,13 +71,13 @@ let r = lang;
/** /**
* 键值字典 * 键值字典
* @template T * @template T
* @typedef {Map<string, T>} KeyMap * @typedef {{[key: string]: T}} KeyMap
*/ */
/** /**
* 索引字典 * 索引字典
* @template T * @template T
* @typedef {Map<number, T>} IndexMap * @typedef {{[index: number]: T}} IndexMap
*/ */
/** /**