UNPKG

@viewdo/dxp-story-cli

Version:

DXP Story Management CLI

16 lines (15 loc) 307 B
import { DataType } from './DataType'; export declare class DataItem { constructor(dataPoint: any, value: any); /** * Data key * @pattern ^[A-Za-z0-9-_]{1,30}$ */ key: string; /** Data type */ type: DataType; /** Data value * @nullable */ value?: any; }