@withjoy/sdk-js
Version:
Joy Javascript SDK
16 lines (15 loc) • 440 B
TypeScript
declare class Choice {
private _choices;
private _choiceId;
constructor(choices: any, choiceId: any);
readonly id: string;
readonly sortKey: any;
readonly storeValue: any;
readonly displayValue: any;
displayValueWithContext(evalContext?: {}): any;
readonly _choice: any;
toString(): string;
changeDisplayValueTo(displayValue: any): any;
remove(): any;
}
export default Choice;