@cline/shared 0.0.46 → 0.0.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/extensions/contribution-registry.d.ts +5 -1
- package/dist/feature-flags.d.ts +42 -0
- package/dist/hub.d.ts +18 -0
- package/dist/index.browser.d.ts +2 -1
- package/dist/index.browser.js +14 -14
- package/dist/index.d.ts +2 -1
- package/dist/index.js +45 -45
- package/dist/runtime/cline-environment.d.ts +2 -2
- package/package.json +1 -1
|
@@ -13,5 +13,5 @@ export declare const DEFAULT_CLINE_ENVIRONMENT: ClineEnvironment;
|
|
|
13
13
|
export interface ResolveClineEnvironmentOptions {
|
|
14
14
|
env?: Partial<NodeJS.ProcessEnv>;
|
|
15
15
|
}
|
|
16
|
-
export declare function resolveClineEnvironment(
|
|
17
|
-
export declare function getClineEnvironmentConfig(
|
|
16
|
+
export declare function resolveClineEnvironment(): ClineEnvironment;
|
|
17
|
+
export declare function getClineEnvironmentConfig(env?: ClineEnvironment): ClineEnvironmentConfig;
|