@web-noise/core 0.0.13 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -340,7 +340,7 @@ interface AppProps {
340
340
  projectState?: Project;
341
341
  plugins?: Array<PluginConfig>;
342
342
  editorContextMenu?: Array<ReactNode>;
343
- onChange?: ({ nodes, edges, controlPanel }: EditorState) => void;
343
+ onChange?: (project: Project) => void;
344
344
  theme?: Theme;
345
345
  }
346
346
  export const Editor: ({ ...props }: AppProps) => JSX.Element;