UNPKG
ongkir
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
Shipping charges from logistic services in Indonesia
ongkir
/
src
/
expeditions
/
21Express.ts
17 lines
(16 loc)
•
324 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
{ BaseExpedition } from
'./Base'
export
class
DuaSatuExpress
extends
BaseExpedition
{
public
constructor
() {
super
(
'duasatu'
)
this
.mappingTableResult = { service:
0
, price:
1
, etd:
2
}
this
.origin = { id:
'jakarta'
, label:
'Jakarta'
, value:
'Jakarta'
} } }