UNPKG
ng2-us-states
Version:
latest (3.0.1)
3.0.1
3.0.0
2.0.0
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
Angular service for retrieving States and Territories
bitbucket.org/bwellons/ng-2-us-states
ng2-us-states
/
src
/
us-states.module.ts
13 lines
(10 loc)
•
275 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
USStateService
}
from
'./us-states.service'
;
import
{
NgModule
}
from
'@angular/core'
;
export
{
USStateService
}
from
'./us-states.service'
;
@NgModule
({
imports
: [],
exports
: [],
declarations
: [],
providers
: [
USStateService
], })
export
class
USStateModule
{ }