Skip to content

Instantly share code, notes, and snippets.

@upta
Last active August 29, 2015 14:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save upta/c5476c08161501c933c3 to your computer and use it in GitHub Desktop.
Save upta/c5476c08161501c933c3 to your computer and use it in GitHub Desktop.
module Upta
{
export interface IExampleScope extends ng.IScope
{
method();
test:string;
}
export class Example
{
static $inject = ["$scope", "ExampleSvc"];
constructor(private $scope: ng.IScope, private service:ExampleSvc)
{
this.$scope.test = "upta";
this.$scope.method = this.method;
}
private method = () => {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment