Ver Fonte

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

Alexander Rose há 5 anos atrás
pai
commit
b1fb9c5c47
1 ficheiros alterados com 1 adições e 1 exclusões
  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> { }