├── .gitignore ├── LICENSE ├── README.md ├── handler.ts ├── package.json ├── sample.pdf ├── serverless.yml ├── src ├── Helper.ts ├── PDFGenerator.ts ├── templates │ └── pdf-template.ts └── types │ ├── GeneratorTypes.ts │ └── HelperTypes.ts ├── tsconfig.json ├── vscode └── launch.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/README.md -------------------------------------------------------------------------------- /handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/handler.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/package.json -------------------------------------------------------------------------------- /sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/sample.pdf -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/serverless.yml -------------------------------------------------------------------------------- /src/Helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/src/Helper.ts -------------------------------------------------------------------------------- /src/PDFGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/src/PDFGenerator.ts -------------------------------------------------------------------------------- /src/templates/pdf-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/src/templates/pdf-template.ts -------------------------------------------------------------------------------- /src/types/GeneratorTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/src/types/GeneratorTypes.ts -------------------------------------------------------------------------------- /src/types/HelperTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/src/types/HelperTypes.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/vscode/launch.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keshav1002/pdf-lambda-puppeteer/HEAD/webpack.config.js --------------------------------------------------------------------------------