(
key: "focus" | "active",
value: CommentFocus | null | ((value: CommentFocus | null) => CommentFocus | null),
)
| 88 | const all = () => aggregate(store.comments) |
| 89 | |
| 90 | const setRef = ( |
| 91 | key: "focus" | "active", |
| 92 | value: CommentFocus | null | ((value: CommentFocus | null) => CommentFocus | null), |
| 93 | ) => setState(key, value) |
| 94 | |
| 95 | const setFocus = (value: CommentFocus | null | ((value: CommentFocus | null) => CommentFocus | null)) => |
| 96 | setRef("focus", value) |
no test coverage detected