UNPKG
insight-previous-tcr
Version:
latest (8.5.7)
8.5.7
A blockchain explorer for Bitcore
github.com/bitpay/bitcore
bitpay/bitcore
insight-previous-tcr
/
src
/
components
/
error
/
error.module.ts
11 lines
(9 loc)
•
270 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ NgModule }
from
"@angular/core"
;
import
{ IonicModule }
from
"ionic-angular"
;
import
{ ErrorComponent }
from
"./error"
;
@NgModule(
{ declarations: [ErrorComponent], imports: [IonicModule], exports: [ErrorComponent] }
)
export
class
ErrorComponentModule
{}