@figtreejs/browser 0.0.1-beta.0

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.
@@ -0,0 +1,22 @@
1
+ import * as Core from '@figtreejs/core';
2
+ import { FigtreeProps } from '@figtreejs/core';
3
+
4
+ export declare function figtree(options: FigTreeOptions): void;
5
+
6
+ declare interface FigTreeOptions extends FigtreeProps {
7
+ svg: SVGSVGElement;
8
+ }
9
+
10
+ export declare function figtreeStatic(options: FigtreeProps): string;
11
+
12
+ declare type FT = typeof Core & {
13
+ figtree: typeof figtree;
14
+ figtreeStatic: typeof figtreeStatic;
15
+ };
16
+
17
+ export declare const ft: FT;
18
+
19
+
20
+ export * from "@figtreejs/core";
21
+
22
+ export { }