UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

12 lines (9 loc) 246 B
import { Template } from './template'; export class PartialDefinition<T> { name: string; // for debugging template: Template<T>; constructor(name: string, template: Template<T>) { this.name = name; this.template = template; } }