Skip to content

Commit

Permalink
cellify: update follow types
Browse files Browse the repository at this point in the history
  • Loading branch information
hbbio committed Apr 19, 2024
1 parent 328ec25 commit f24fa75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cellify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ export type Path = Key[];
*/
export const follow = (
proxy: SheetProxy,
v: Cellified<unknown>,
v: AnyCell<unknown>,
path: Path,
name = "follow"
) => {
const aux = (v: Cellified<unknown>, path: Path, name: string) => {
const aux = (v: AnyCell<unknown>, path: Path, name: string) => {
// @todo multi collector?
const coll = collector<MapCell<unknown, false>>(proxy);
return proxy.map(
Expand Down

0 comments on commit f24fa75

Please sign in to comment.