export type MustacheValue = string|string[]|Function|Object; /** * A key-value pair for a variable name and its value. */ export class Variable{ key:string; value:MustacheValue; constructor(key:string,value:MustacheValue){ this.key = key; this.value = value; } };