UNPKG

molstar

Version:

A comprehensive macromolecular library.

16 lines (15 loc) 661 B
/** * Copyright (c) 2019-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose <alexander.rose@weirdbyte.de> * @author Gianluca Tomasello <giagitom@gmail.com> */ import { ParamDefinition as PD } from '../../../mol-util/param-definition.js'; import { Text } from './text.js'; export interface TextBuilder { add(str: string, x: number, y: number, z: number, depth: number, scale: number, group: number): void; getText(): Text; } export declare namespace TextBuilder { function create(props?: Partial<PD.Values<Text.Params>>, initialCount?: number, chunkSize?: number, text?: Text): TextBuilder; }