UNPKG

cv-dialog-sdk

Version:

Catavolt Dialog Javascript API

12 lines (11 loc) 220 B
/** * ***************************************************** */ export class DateTimeValue { constructor(dateObj) { this.dateObj = dateObj; } toString() { this.dateObj.toISOString(); } }