import { Concept } from "../concept/Concept"; import { Value } from "../concept/value/Value"; /** * Contains an element of the group aggregate query result. */ export interface ValueGroup { /** * Retrieves the concept that is the group owner. * * ### Examples * * ```ts * valueGroup.owner * ``` */ readonly owner: Concept; /** * Retrieves the Value answer of the group, if there is one. * * ### Examples * * ```ts * valueGroup.value * ``` */ readonly value: Value | undefined; }