cv-dialog-sdk
Version:
Catavolt Dialog Javascript API
9 lines (8 loc) • 315 B
TypeScript
import { CellValue } from './CellValue';
/**
* A text template containing substitution parameters that is instantiated at presentation time and filled with business values.
*/
export declare class SubstitutionCellValue extends CellValue {
readonly value: string;
constructor(style: any, value: string);
}