Plugin that provides a user interface to import / export values within Tweakpane.
pnpm add tweakpane-plugin-import-export
import { Pane } from 'tweakpane'
import * as ImportExportPlugin from 'tweakpane-plugin-import-export'
// Or using a CDN:
// import { Pane } from 'https://esm.sh/tweakpane'
// import * as ImportExportPlugin from 'https://esm.sh/tweakpane-plugin-import-export'
const pane = new Pane()
pane.registerPlugin(ImportExportPlugin)
pane.addBlade({ view: 'import-export' })