/**
 * A variable selected in the UI, containing the variable name, and the type (=class or property type) being selected
 */
export interface SelectedVal {
    variable: string;
    type: string;
}