molstar
Version:
A comprehensive macromolecular library.
12 lines (11 loc) • 313 B
TypeScript
/**
* Copyright (c) 2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
export interface ModelFormat<T = unknown> {
readonly kind: string;
name: string;
data: T;
}