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