molstar
Version:
A comprehensive macromolecular library.
14 lines (13 loc) • 369 B
TypeScript
/**
* Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
export interface PickingId {
objectId: number;
instanceId: number;
groupId: number;
}
export declare namespace PickingId {
function areSame(a: PickingId, b: PickingId): boolean;
}