(...args)
| 162 | }, |
| 163 | |
| 164 | error(...args) { |
| 165 | state.errors += 1; |
| 166 | |
| 167 | if (silent) { |
| 168 | return; |
| 169 | } |
| 170 | |
| 171 | console.error(chalk.red(`[ERROR]\t[${new Date().toISOString()}] (Typegen)`), ...args); |
| 172 | }, |
| 173 | }; |
| 174 | }; |
| 175 |
nothing calls this directly
no test coverage detected
searching dependent graphs…