mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-07 20:00:37 -07:00
fix: merge duplicate imports in a2a-server package (2/4) (#19781)
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
import { expand } from 'dotenv-expand';
|
||||
import { expand, type DotenvExpandOutput } from 'dotenv-expand';
|
||||
|
||||
/**
|
||||
* Expands environment variables in a string using the provided environment record.
|
||||
@@ -45,7 +45,7 @@ export function expandEnvVars(
|
||||
}
|
||||
}
|
||||
|
||||
const result = expand({
|
||||
const result: DotenvExpandOutput = expand({
|
||||
parsed: { [dummyKey]: processedStr },
|
||||
processEnv,
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user