import type { Expr, TypeDesc } from '../../../model/malloy_types'; type MorphicValues = Record; export interface WithValue { value: Expr; morphic?: MorphicValues; } export type ExprResult = TypeDesc & WithValue; export {};