Skip to content

Instantly share code, notes, and snippets.

View vsternbach's full-sized avatar

Vlad Sternbach vsternbach

  • Tel Aviv, Israel
View GitHub Profile
@vsternbach
vsternbach / decorators.ts
Last active July 13, 2016 16:01
angularjs typescript decorators
const ngApp = 'app';
//import {ngApp} from "./constants";
const module = function(moduleOrName) {
return typeof moduleOrName === "string"
? angular.module(moduleOrName)
: moduleOrName;
};
export function Component(options: {