/* * Copyright (c) 2018 Mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import Expression from './expression' interface Container { source?: string, version: string, expression: Expression } export default Container