Skip to content

Instantly share code, notes, and snippets.

@jenmei
Created August 18, 2016 05:13
Show Gist options
  • Save jenmei/719ecce962e4f658092af81aba268d81 to your computer and use it in GitHub Desktop.
Save jenmei/719ecce962e4f658092af81aba268d81 to your computer and use it in GitHub Desktop.
interface SuperInterface {
url: string
}
function amazingDirective() {
return {
scope: {},
link: function (scope: SuperInterface) {
let description : string = someFunctionThatsNotTypeScriptButWeKnowReturnsAString();
scope.description = description;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment