ng1-shift
Version:
Angular 1.5+ decorators for writing Angular2 like.
16 lines (15 loc) • 340 B
TypeScript
/**
* Type of the Component decorator / constructor function.
*/
export interface Directive {
selector: string;
template?: string;
templateUrl?: string;
}
/**
* Type of the Component decorator / constructor function.
*/
export interface DirectiveDecorator {
(obj: Directive): any;
new (obj: Directive): Directive;
}