UNPKG
@teaploy/megaprint
Version:
latest (0.2.0)
0.2.0
0.1.0-alpha.9
0.1.0-alpha.8
0.1.0-alpha.7
0.1.0-alpha.6
0.1.0-alpha.5
0.1.0-alpha.4
0.1.0-alpha.3
0.1.0-alpha.2
0.1.0-alpha.1
0.1.0-alpha.0
Megaprint npm integration
github.com/Teaploy/teaploy-megaprint
Teaploy/teaploy-megaprint
@teaploy/megaprint
/
lib
/
core
/
values
/
receptor.d.ts
10 lines
(9 loc)
•
266 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Address
}
from
'./address'
;
export
declare
class
Receptor
{
address
:
Address
;
email
:
string
;
name
:
string
;
taxNumber
:
string
;
constructor
(
taxNumber
:
string
,
email
:
string
|
undefined
,
name
:
string
,
address
:
Address
);
toDte
():
any
; }