# this.getModuleIds

类型:
() => IterableIterator<string>

返回一个 Iterator,可访问当前图中的所有模块 ID。它可以通过以下方式进行迭代:

for (const moduleId of this.getModuleIds()) {
	/* ... */
}

或者通过 Array.from(this.getModuleIds()) 转换成数组。

Last Updated: 6/14/2023, 8:56:23 AM