UNPKG

molstar

Version:

A comprehensive macromolecular library.

13 lines (12 loc) 422 B
/** * Copyright (c) 2023 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Yana Rose <yana.v.rose@gmail.com> */ import { StringLike } from '../../../mol-io/common/string-like'; export type PdbHeaderData = { id_code?: string; dep_date?: string; classification?: string; }; export declare function addHeader(data: StringLike, s: number, e: number, header: PdbHeaderData): void;