浏览代码

renamed 'structure-element-index' to 'unit-element-index'

Alexander Rose 5 年之前
父节点
当前提交
b1fb9c5c47
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/mol-model/structure/structure/element/element.ts

+ 1 - 1
src/mol-model/structure/structure/element/element.ts

@@ -15,7 +15,7 @@ import StructureProperties from '../properties';
 export type Set = SortedArray<ElementIndex>
 
 /** Index into Unit.elements */
-export type UnitIndex = { readonly '@type': 'structure-element-index' } & number
+export type UnitIndex = { readonly '@type': 'unit-element-index' } & number
 
 export interface Property<T> { (location: Location): T }
 export interface Predicate extends Property<boolean> { }