/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import * as Data from './transforms/data.js'; import * as Misc from './transforms/misc.js'; import * as Model from './transforms/model.js'; import * as Volume from './transforms/volume.js'; import * as Representation from './transforms/representation.js'; import * as Shape from './transforms/shape.js'; export declare const StateTransforms: { readonly Data: typeof Data; readonly Misc: typeof Misc; readonly Model: typeof Model; readonly Volume: typeof Volume; readonly Representation: typeof Representation; readonly Shape: typeof Shape; }; export type StateTransforms = typeof StateTransforms;