2.0.3 • Published 2 years ago

@otr-app/ui-shared-services v2.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

How to use

  1. Import into bundle (e.g. index.ts)
    import '@otr-app/ui-shared-services';
  2. Add to list of module dependencies (e.g. app.ts, application.ts)

    angular.module('...',
       ['app.ui_shared_services', '...', '...']
    )

    Example of using a shared service

    import { AppAuthenticationService } from '@otr-app/ui-shared-services';
    
    class SomeComponent {
        constructor(private AppAuthenticationService: AppAuthenticationService) {}
        
        async login() {
            return await AppAuthenticationService.login('email', 'password');
        }
    }
    
    SomeComponent.$inject = ['AppAuthenticationService'];

Services in this package

  • AppAuthenticationService
  • AppAwsS3Services
  • AppFileHandlerService
  • AppCredentialsService
  • RetryAsyncService
2.0.3

2 years ago

2.0.2

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.0.0

3 years ago

0.1.0

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.4

3 years ago

0.1.3

3 years ago

0.1.5

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago