UNPKG

@zohocrm/typescript-sdk-2.1

Version:
13 lines (12 loc) 279 B
/** * Common Class to provide or obtain a value, when there are multiple supported values. */ declare class Choice<T = any> { private value; constructor(value: T); /** * getValue */ getValue(): T; } export { Choice as MasterModel, Choice as Choice };