UNPKG

cv-dialog-sdk

Version:

Catavolt Dialog Javascript API

11 lines (9 loc) 247 B
import { CellValue } from './CellValue'; /** * A text description typically preceeding a UI component as a prompt */ export class LabelCellValue extends CellValue { constructor(style, readonly value: string) { super(style); } }