TemplatingContext

data class TemplatingContext<out T : Command>(    val input: File,     val output: File,     val body: List<Node>,     val command: T)

Constructors

Link copied to clipboard
fun <out T : Command> TemplatingContext(    input: File,     output: File,     body: List<Node>,     command: T)

Properties

Link copied to clipboard
val body: List<Node>
Link copied to clipboard
val command: T
Link copied to clipboard
val input: File
Link copied to clipboard
val output: File