hannahhoward/a1atscript

View on GitHub
src/a1atscript/ng2Directives/Ng2Directive.js

Summary

Maintainability
A
0 mins
Test Coverage
export default class Ng2Directive {
  constructor(descriptor) {
    this.selector = descriptor.selector;
    this.properties = descriptor.properties || descriptor.bind;
    this.controllerAs = descriptor.controllerAs;
    this.require = descriptor.require;
    this.transclude = descriptor.transclude;
    this.events = descriptor.events;
  }
}