UNPKG

object-exporter

Version:

A little JavaScript plugin to generate PDF, XLS, CSV and DOC from JavaScript Object or DOM element only from the frontend!

11 lines (7 loc) 219 B
import 'object-exporter/dist/exporter'; export interface Configuration { exportable: any; type?: string; } declare var objectExporter: (params: string | Configuration) => void; export default objectExporter;