| 49 | key: string; |
| 50 | } |
| 51 | interface KeyedLine { |
| 52 | tokens: KeyedToken[]; |
| 53 | key: string; |
| 54 | } |
| 55 | |
| 56 | const addKeysToTokens = (lines: ThemedToken[][]): KeyedLine[] => |
| 57 | lines.map((line, lineIdx) => ({ |
nothing calls this directly
no outgoing calls
no test coverage detected