File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { QuartzComponent , QuartzComponentConstructor , QuartzComponentProps } from "./types"
2
2
// @ts -ignore
3
- import script from "./scripts/graph.inline"
4
- import style from "./styles/graph.scss"
5
3
import { i18n } from "../i18n"
6
4
import { classNames } from "../util/lang"
5
+ import script from "./scripts/graph.inline"
6
+ import style from "./styles/graph.scss"
7
7
8
8
export interface D3Config {
9
9
drag : boolean
@@ -20,12 +20,12 @@ export interface D3Config {
20
20
focusOnHover ?: boolean
21
21
}
22
22
23
- interface GraphOptions {
23
+ export interface GraphOptions {
24
24
localGraph : Partial < D3Config > | undefined
25
25
globalGraph : Partial < D3Config > | undefined
26
26
}
27
27
28
- const defaultOptions : GraphOptions = {
28
+ export const defaultOptions : GraphOptions = {
29
29
localGraph : {
30
30
drag : true ,
31
31
zoom : true ,
You can’t perform that action at this time.
0 commit comments