Skip to content

Commit

Permalink
improve internal imports
Browse files Browse the repository at this point in the history
  • Loading branch information
minecrawler committed May 22, 2023
1 parent 2447819 commit 6fa562b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/dataBinding.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {IObservable, Observable} from "./observable";
import {type IObservable, Observable} from "./observable";

export function bidiFromEvent<E extends keyof HTMLElementEventMap>(target: HTMLElement, eventName: E, fieldName: string): IObservable {
const observable = new Observable();
Expand Down
2 changes: 1 addition & 1 deletion src/observable.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {TListener} from "./oberservable.spec";
import type {TListener} from "./oberservable.spec";

export * from "./oberservable.spec";

Expand Down
3 changes: 2 additions & 1 deletion src/slim-fit.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {ERenderPoint, ISlimFit, ISlimFitConstructorOptions, ISlimFitOptions} from "./slim-fit.spec";
import type {ISlimFit, ISlimFitConstructorOptions, ISlimFitOptions} from "./slim-fit.spec";
import {ERenderPoint} from "./slim-fit.spec";

export * from "./slim-fit.spec";

Expand Down

0 comments on commit 6fa562b

Please sign in to comment.