(id1: Id, id2?: Id)
| 35 | ); |
| 36 | |
| 37 | const getIdsAsProp = (id1: Id, id2?: Id) => |
| 38 | id2 == null ? {0: id1} : {0: id1, 1: id2}; |
| 39 | |
| 40 | const nullEvent = (_offset: number) => null; |
| 41 | const act = (callback: () => void) => callback(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…