(rawOptions: CreateOptions = {})
| 620 | * @category Basic |
| 621 | */ |
| 622 | export function create(rawOptions: CreateOptions = {}): Service { |
| 623 | const foundConfigResult = findAndReadConfig(rawOptions); |
| 624 | return createFromPreloadedConfig(foundConfigResult); |
| 625 | } |
| 626 | |
| 627 | /** @internal */ |
| 628 | export function createFromPreloadedConfig( |
no test coverage detected
searching dependent graphs…