/** * Represents a Question with neither anyOf nor oneOf. */ export interface IActivityStreamsQuestionNeitherChoice { /** * Specifies an inclusive list of possible answers. */ anyOf?: never; /** * Specifies an exclusive list of possible answers. */ oneOf?: never; }