UNPKG

cv-dialog-sdk

Version:

Catavolt Dialog Javascript API

11 lines (10 loc) 257 B
import { CellValue } from './CellValue'; /** * A text description typically preceeding a UI component as a prompt */ export class LabelCellValue extends CellValue { constructor(style, value) { super(style); this.value = value; } }