/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import { CifWriter } from '../../mol-io/writer/cif.js'; import { Model } from '../../mol-model/structure.js'; interface PropertyWrapper { info: PropertyWrapper.Info; data: Data; } declare namespace PropertyWrapper { interface Info { timestamp_utc: string; } function createInfo(): Info; function defaultInfoCategory(name: string, getter: (ctx: Ctx) => Info | undefined): CifWriter.Category; function tryGetInfoFromCif(categoryName: string, model: Model): Info | undefined; } export { PropertyWrapper };