Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 | 51x 51x 51x 51x 51x | import { createAction, props } from "@ngrx/store" export const setAllFocusedNodes = createAction("SET_ALL_FOCUSED_NODES", props<{ value: string[] }>()) export const focusNode = createAction("FOCUS_NODE", props<{ value: string }>()) export const unfocusAllNodes = createAction("UNFOCUS_ALL_NODES") export const unfocusNode = createAction("UNFOCUS_NODE") |