(target: Record<string, any>)
| 2196 | } |
| 2197 | |
| 2198 | function getFnSelectState(target: Record<string, any>): |
| 2199 | | { |
| 2200 | sourceRow: Record<string, any> |
| 2201 | fnSelect: (row: Record<string, any>) => any |
| 2202 | } |
| 2203 | | undefined { |
| 2204 | return (target as Record<PropertyKey, any>)[FN_SELECT_STATE] as |
| 2205 | | { |
| 2206 | sourceRow: Record<string, any> |
| 2207 | fnSelect: (row: Record<string, any>) => any |
| 2208 | } |
| 2209 | | undefined |
| 2210 | } |
| 2211 | |
| 2212 | function refreshFnSelectResult( |
| 2213 | target: Record<string, any>, |
no outgoing calls
no test coverage detected