@webuildbots/webuildbots-sdk
Version:
webuildbots sdk
27 lines (26 loc) • 506 B
TypeScript
export default interface Choice {
title?: {
any?: string;
en?: string;
nl?: string;
cy?: string;
it?: string;
};
selectedTitle?: string;
action: {
type: string;
value?: any;
view?: string;
track?: boolean;
};
profile?: any;
userStatus?: string;
formValue?: string;
session?: any;
functionArgs?: any;
persistentMenu?: boolean;
selectBlock?: {
id: string;
};
_id?: any;
}