ts-graphviz 1.4.1-dev.1f5b79680 → 1.4.1-dev.c60d6bfba

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.
@@ -9,7 +9,7 @@ export interface Options {
9
9
  /**
10
10
  * Execute the Graphviz dot command and make a Stream of the results.
11
11
  */
12
- export function toStream(dot: string, options?: Options): Promise<ReadableStream>;
12
+ export function toStream(dot: string, options?: Options): Promise<ReadableStream<Uint8Array>>;
13
13
 
14
14
  /**
15
15
  * Execute the Graphviz dot command and output the results to a file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ts-graphviz",
3
- "version": "1.4.1-dev.1f5b79680",
3
+ "version": "1.4.1-dev.c60d6bfba",
4
4
  "author": "kamiazya <yuki@kamiazya.tech>",
5
5
  "description": "Graphviz library for TypeScript.",
6
6
  "homepage": "https://ts-graphviz.github.io/ts-graphviz/",