( inlineConfig: InlineConfig | ResolvedConfig, )
| 1384 | } |
| 1385 | |
| 1386 | export function isResolvedConfig( |
| 1387 | inlineConfig: InlineConfig | ResolvedConfig, |
| 1388 | ): inlineConfig is ResolvedConfig { |
| 1389 | return ( |
| 1390 | SYMBOL_RESOLVED_CONFIG in inlineConfig && |
| 1391 | inlineConfig[SYMBOL_RESOLVED_CONFIG] |
| 1392 | ) |
| 1393 | } |
| 1394 | |
| 1395 | export async function resolveConfig( |
| 1396 | inlineConfig: InlineConfig, |