cv-dialog-sdk
Version:
Catavolt Dialog Javascript API
11 lines (10 loc) • 323 B
JavaScript
import { CellValue } from './CellValue';
/**
* A text template containing substitution parameters that is instantiated at presentation time and filled with business values.
*/
export class SubstitutionCellValue extends CellValue {
constructor(style, value) {
super(style);
this.value = value;
}
}