My code has the following:
.service('testService', TestService)
.service('userService', UserService)
.constant("appConstant", {
appName: "My App",
appVersion: 2.0,
baseUrl: "http://localhost:3048",
Action: {
None:0,
Registering: 1,
Authenticating: 2
}
});
Is there a way I can extract the constant object into a different .ts file and include that?