| 188 | function findConfigFile(...pathSegments: string[]): string | undefined |
| 189 | |
| 190 | interface LoadConfigOptions { |
| 191 | /** |
| 192 | * Path to config file |
| 193 | * */ |
| 194 | config?: string |
| 195 | |
| 196 | /** |
| 197 | * Path to file inside the project to find Browserslist config |
| 198 | * in closest folder |
| 199 | */ |
| 200 | path?: string |
| 201 | |
| 202 | /** |
| 203 | * Environment to choose part of config. |
| 204 | */ |
| 205 | env?: string |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | declare global { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…