Skip to content

Commit

Permalink
clock: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
hbbio committed Apr 15, 2024
1 parent ebee005 commit 62ce172
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/clock.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { writeFileSync } from "fs";
import { writeFileSync } from "node:fs";
import { expect, test } from "vitest";

import { clock, clockWork } from "./clock";
import { Debugger } from "./debug";
import { delayed, sleep } from "./promise";
Expand Down
4 changes: 2 additions & 2 deletions src/clock.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { AnyCell, MapCell, ValueCell } from "./cell";
import { SheetProxy } from "./proxy";
import type { AnyCell, MapCell, ValueCell } from "./cell";
import type { SheetProxy } from "./proxy";

export type Clock = ValueCell<number> & {
stop: () => void;
Expand Down

0 comments on commit 62ce172

Please sign in to comment.