Hacker News new | ask | show | jobs
by Keats 4429 days ago
Typescript classes work nicely with Angular controller I find. Coffeescript ones too.
1 comments

Afaik you cant declare anonymous classes in typescript,let alone wrapping them in a closure.

No problem with Coffeescript.

    module.controller 'MainCtrl', class
        constructor:($scope,bar,baz)->
          $scope.message="foo"
        @$inject = ['$scope','bar','baz']
that's why i prefer the later.types or not.
I don't use anonymous classes for controllers so that's not an issue for me but if you want to use them, I don't think there's a way to do it in typescript