import type { TsUnknown } from "./TsUnknown.js"; import type { WidgetId } from "./WidgetId.js"; export type ThirdPartyPlugin = { /** * The friendly id of the widget that will use this plugin * example: `@username/widget-name` */ target: WidgetId; /** * The plugin data, this can be anything and depends on the widget using this plugin * to handle it, parse it and use it. */ plugin: TsUnknown; }; //# sourceMappingURL=ThirdPartyPlugin.d.ts.map