{"version":3,"file":"optionalDirective.js","sourceRoot":"","sources":["../../../../src/modules/directives/applicationcore/optionalDirective.ts"],"names":[],"mappings":"AAAA,IAAO,UAAU,CA2BhB;AA3BD,WAAO,UAAU;IACb,IAAc,eAAe,CAyB5B;IAzBD,WAAc,eAAe;QAIzB;YAKI;gBAHA,aAAQ,GAAG,QAAQ,CAAC;gBACpB,UAAK,GAAG,EAAE,CAAC;gBAKX,SAAI,GAAG,UAAC,MAAsB,EAAE,QAA6B;gBAE7D,CAAC,CAAA;YAJD,CAAC;YAMM,yBAAO,GAAd;gBACI,IAAM,SAAS,GAAG,cAAM,OAAA,IAAI,iBAAiB,EAAE,EAAvB,CAAuB,CAAC;gBAChD,SAAS,CAAC,OAAO,GAAG,EAAE,CAAC;gBAEvB,OAAO,SAAS,CAAC;YACrB,CAAC;YACL,wBAAC;QAAD,CAAC,AAlBD,IAkBC;QAlBY,iCAAiB,oBAkB7B,CAAA;QAED,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,SAAS,CAAC,KAAK,EAAE,iBAAiB,CAAC,OAAO,EAAE,CAAC,CAAC;IACxE,CAAC,EAzBa,eAAe,GAAf,0BAAe,KAAf,0BAAe,QAyB5B;AACL,CAAC,EA3BM,UAAU,KAAV,UAAU,QA2BhB","sourcesContent":["module directives {\r\n export module applicationcore {\r\n interface IOptionalScope extends ng.IScope {\r\n }\r\n\r\n export class optionalDirective implements ng.IDirective {\r\n\r\n template = ` `;\r\n scope = {};\r\n\r\n constructor() {\r\n }\r\n\r\n link = ($scope: IOptionalScope, $element: ng.IAugmentedJQuery) => {\r\n\r\n }\r\n\r\n static factory(): ng.IDirectiveFactory {\r\n const directive = () => new optionalDirective();\r\n directive.$inject = [];\r\n\r\n return directive;\r\n }\r\n }\r\n\r\n angular.module(\"app\").directive(\"opt\", optionalDirective.factory());\r\n }\r\n}"]}