Block info with context (for --context flag)
| 133 | |
| 134 | /** Block info with context (for --context flag) */ |
| 135 | interface BlockWithContext extends BlockResult { |
| 136 | /** Variables defined by this block */ |
| 137 | defines?: string[] |
| 138 | /** Variables used by this block */ |
| 139 | uses?: string[] |
| 140 | /** Lint issues specific to this block */ |
| 141 | issues?: Array<{ |
| 142 | code: string |
| 143 | message: string |
| 144 | severity: 'error' | 'warning' |
| 145 | }> |
| 146 | } |
| 147 | |
| 148 | /** Project context info for --context flag */ |
| 149 | interface ProjectContext { |
nothing calls this directly
no outgoing calls
no test coverage detected