UNPKG

capacitor-webview-print

Version:

This is a Capacitor plugin for printing the webview. It supports the Web, iOS and Android Platform.

7 lines 264 B
import { registerPlugin } from '@capacitor/core'; const WebviewPrint = registerPlugin('WebviewPrint', { web: () => import('./web').then(m => new m.WebviewPrintWeb()), }); export * from './definitions'; export { WebviewPrint }; //# sourceMappingURL=index.js.map