22 lines
439 B
JavaScript
Raw Normal View History

import {Type} from 'facade/lang';
import {ElementServicesFunction} from './facade';
import {ABSTRACT} from 'facade/lang';
@ABSTRACT
export class Directive {
2014-09-25 16:53:32 -07:00
constructor({
selector,
lightDomServices,
implementsTypes
}:{
selector:String,
lightDomServices:ElementServicesFunction,
implementsTypes:Array<Type>
})
{
this.lightDomServices = lightDomServices;
this.selector = selector;
}
}