Skip to content

Instantly share code, notes, and snippets.

@NikhilNanjappa
Last active February 12, 2022 13:38
Show Gist options
  • Save NikhilNanjappa/e80674f8d7176fc19bd231b2bd23cabb to your computer and use it in GitHub Desktop.
Save NikhilNanjappa/e80674f8d7176fc19bd231b2bd23cabb to your computer and use it in GitHub Desktop.
callGeneratePdf.js
const docDefinition = {
content: ['This will show up in the file created']
};
generatePdf(docDefinition, (response) => {
// doc successfully created
res.json({
status: 200,
data: response
});
}, (error) => {
// doc creation error
res.json({
status: 400,
data: error
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment