/** * Copyright (c) 2020 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose */ import { Column } from '../../../mol-data/db.js'; import { CustomPropertyDescriptor } from '../../../mol-model/custom-property.js'; import { FormatPropertyProvider } from '../common/property.js'; export { AtomPartialCharge }; interface AtomPartialCharge { data: Column; type?: string; } declare namespace AtomPartialCharge { const Descriptor: CustomPropertyDescriptor; const Provider: FormatPropertyProvider; }