Skip to content

Commit

Permalink
index: export type Clock
Browse files Browse the repository at this point in the history
  • Loading branch information
hbbio committed Mar 27, 2024
1 parent 8df2da4 commit c7a8273
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/clock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type Clock = ValueCell<number> & {
work: <T, NF extends boolean = false>(
cells: AnyCell<unknown>[],
fn: (...args: unknown[]) => T,
name: string,
name?: string,
nf?: NF
) => MapCell<T, NF>;
};
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export {
reduce,
sort
} from "./array";
export { clock, clockWork } from "./clock";
export { clock, clockWork, type Clock } from "./clock";
export { Debugger } from "./debug";
export { jsonStringify } from "./json";
export { nextSubscriber } from "./next";

0 comments on commit c7a8273

Please sign in to comment.