# `Surface.AST.Interpolation`
[🔗](https://github.com/surface-ui/surface/blob/v0.12.3/lib/surface/ast.ex#L307)

An AST node representing interpolation within a node

## Properties
    * `:original` - the original text, useful for debugging and error messages
    * `:value` - a quoted expression
    * `:constant?` - true if the expression can be evaluated at compile time
    * `:meta` - compilation meta data
    * `:directives` - directives associated with this interpolation

# `t`
[🔗](https://github.com/surface-ui/surface/blob/v0.12.3/lib/surface/ast.ex#L320)

```elixir
@type t() :: %Surface.AST.Interpolation{
  constant?: boolean(),
  directives: [Surface.AST.Directive.t()],
  meta: Surface.AST.Meta.t(),
  original: binary(),
  value: any()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
