import * as Mustache from 'mustache' export class Command{ private commandTemplate: string; constructor(template: string){ this.commandTemplate = template; } render(options: object): string{ return Mustache.render(this.commandTemplate, options); } }