cv-dialog-sdk
Version:
Catavolt Dialog Javascript API
11 lines (9 loc) • 313 B
text/typescript
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, readonly value: string) {
super(style);
}
}