@web-noise/core 0.0.20 → 0.0.21
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/cjs/components.js +61 -12
- package/dist/cjs/components.js.map +1 -1
- package/dist/esm/components.js +75 -26
- package/dist/esm/components.js.map +1 -1
- package/dist/main.js +65 -16
- package/dist/main.js.map +1 -1
- package/dist/module.js +74 -25
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +5 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -373,5 +373,10 @@ interface AppProps {
|
|
|
373
373
|
theme?: Theme;
|
|
374
374
|
}
|
|
375
375
|
export const Editor: ({ ...props }: AppProps) => JSX.Element;
|
|
376
|
+
interface BaseWNNodeParameters extends NodeProps {
|
|
377
|
+
children?: any;
|
|
378
|
+
hideToolbar?: boolean;
|
|
379
|
+
}
|
|
380
|
+
export const BaseWNNode: (props: BaseWNNodeParameters) => JSX.Element;
|
|
376
381
|
|
|
377
382
|
//# sourceMappingURL=types.d.ts.map
|