You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importAModulefrom'app/A/A.module';// will be `undefined`importBServicefrom'./B.service';exportdefaultangular.module('B',[AModule]).service('BService',BService).name;
The text was updated successfully, but these errors were encountered:
By defining a
service
recipe in the "module" file, the result can be a circular dependency:(A.module.js)
(B.module.js)
The text was updated successfully, but these errors were encountered: