File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
import * as graphvizlib from "../build/graphviz/graphvizlib/graphvizlib" ;
3
3
import { loadWasm } from "./util" ;
4
4
5
- type Format = "svg" | "dot" | "json" | "dot_json" | "xdot_json" | "plain" | "plain-ext" ;
6
- type Engine = "circo" | "dot" | "fdp" | "sfdp" | "neato" | "osage" | "patchwork" | "twopi" ;
5
+ export type Format = "svg" | "dot" | "json" | "dot_json" | "xdot_json" | "plain" | "plain-ext" ;
6
+ export type Engine = "circo" | "dot" | "fdp" | "sfdp" | "neato" | "osage" | "patchwork" | "twopi" ;
7
7
8
- interface Image {
8
+ export interface Image {
9
9
path : string ;
10
10
width : string ;
11
11
height : string ;
12
12
}
13
13
14
- interface File {
14
+ export interface File {
15
15
path : string ;
16
16
data : string ;
17
17
}
18
18
19
- interface Ext {
19
+ export interface Ext {
20
20
images ?: Image [ ] ;
21
21
files ?: File [ ] ;
22
22
wasmFolder ?: string ;
You can’t perform that action at this time.
0 commit comments