UNPKG
node-pdflatex
Version:
latest (0.3.0)
0.3.0
0.2.0
0.1.1
0.1.0
PDFLaTeX wrapper for Node
node-pdflatex
/
lib
/
index.d.ts
8 lines
(7 loc)
•
224 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/// <reference types="node" />
export
declare
type
Options
= {
texInputs
?:
string
[];
shellEscape
?:
boolean
; };
declare
const
pdflatex
:
(
source
:
string
,
options
?:
Options
) =>
Promise
<
Buffer
>;
export
default
pdflatex;