container.ts 310 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2018 Mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. */
  6. import Expression from './expression'
  7. interface Container {
  8. source?: string,
  9. version: string,
  10. expression: Expression
  11. }
  12. export default Container