import { Template } from './template'; export class PartialDefinition { name: string; // for debugging template: Template; constructor(name: string, template: Template) { this.name = name; this.template = template; } }