Does anyone know how to reference the pdfmake node-module once it is installed? I have tried many combinations to reference the file such as:
import pdfmake from’pdfmake’;
var pdfMake = require(‘pdfmake’);
but none of them can find the file. How does one reference a node-module once it is installed?
Thank you,
Glen