UNPKG
vb-insight-ui
Version:
latest (1.0.0)
1.0.0
A bitcoin block explorer and AP customized for VB.
github.com/vaultbank/insight
vaultbank/insight
vb-insight-ui
/
app
/
src
/
pages
/
broadcast-tx
/
broadcast-tx.module.ts
17 lines
(15 loc)
•
339 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
{ NgModule }
from
'@angular/core'
;
import
{ IonicPageModule }
from
'ionic-angular'
;
import
{ BroadcastTxPage }
from
'./broadcast-tx'
;
@NgModule(
{ declarations: [ BroadcastTxPage ], imports: [ IonicPageModule.forChild(
BroadcastTxPage
) ], exports: [ BroadcastTxPage ] }
)
export
class
BroadcastTxPageModule
{}