Skip to content

Commit

Permalink
refactor(rstream-dot): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Feb 24, 2020
1 parent 4001d12 commit c900e63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/rstream-dot/src/api.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ISubscribable } from "@thi.ng/rstream";
import type { ISubscribable } from "@thi.ng/rstream";

export interface IToDot {
toDot(opts?: Partial<DotOpts>): string;
Expand Down
4 changes: 2 additions & 2 deletions packages/rstream-dot/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import {
StreamMerge,
StreamSync
} from "@thi.ng/rstream";
import {
import type {
DotOpts,
Node,
NodeType,
WalkState
} from "./api";

export * from "./api";
export type * from "./api";

const getNodeType = (sub: ISubscribable<any>) => {
if (sub instanceof Stream) {
Expand Down

0 comments on commit c900e63

Please sign in to comment.