(...args)
| 152 | }, |
| 153 | |
| 154 | warn(...args) { |
| 155 | state.warning += 1; |
| 156 | |
| 157 | if (silent) { |
| 158 | return; |
| 159 | } |
| 160 | |
| 161 | console.warn(chalk.yellow(`[WARN]\t[${new Date().toISOString()}] (Typegen)`), ...args); |
| 162 | }, |
| 163 | |
| 164 | error(...args) { |
| 165 | state.errors += 1; |
nothing calls this directly
no test coverage detected
searching dependent graphs…