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
/
cjs
/
utils
/
getPageSizeByUnit.d.ts
4 lines
(3 loc)
•
226 B
TypeScript
View Raw
1
2
3
4
import
{
PDFPageSize
}
from
"../interfaces/pageSize"
;
import
{
PDFUnitTypes
}
from
"../types/unitTypes"
;
export
declare
function
PDFGetPageSizeByUnit
(
unit
?:
PDFUnitTypes
,
pageSize
?:
PDFPageSize
): [
number
,
number
] |
undefined
;