Skip to content

Commit

Permalink
refactor(hdom-components): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Feb 24, 2020
1 parent 1aa1083 commit b94f90b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/hdom-components/src/button-group.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { IObjectOf } from "@thi.ng/api";
import { Button, ButtonArgs } from "./button";
import { mergeAttribs } from "./utils/merge-attribs";
import type { IObjectOf } from "@thi.ng/api";
import type { Button, ButtonArgs } from "./button";

/**
* Button group component config options.
Expand Down
2 changes: 1 addition & 1 deletion packages/hdom-components/src/button.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { IObjectOf } from "@thi.ng/api";
import { mergeAttribs } from "./utils/merge-attribs";
import type { IObjectOf } from "@thi.ng/api";

export interface ButtonOpts {
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/hdom-components/src/notification.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { IObjectOf } from "@thi.ng/api";
import { appLink } from "./link";
import type { IObjectOf } from "@thi.ng/api";

export interface NotificationOpts {
/**
Expand Down

0 comments on commit b94f90b

Please sign in to comment.