UNPKG
async-pdf
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.9
0.1.7
0.1.5
0.1.4
0.0.1
Create, Modify and Merge PDF Files
github.com/pereirasamueljp/async-pdf
pereirasamueljp/async-pdf
async-pdf
/
src
/
interfaces
/
text.ts
10 lines
(9 loc)
•
251 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
PDFTextAligns
}
from
"../types/textAlignment"
;
import
{
PDFPositions
}
from
"./positions"
;
export
interface
PDFText
{
value
:
string
,
align
:
PDFTextAligns
,
positions
:
PDFPositions
,
textWidth
:
number
,
textHeight
:
number
}