mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
12 lines
517 B
TypeScript
12 lines
517 B
TypeScript
/*! Copyright (c) Microsoft Corporation. All rights reserved. */
|
|
import * as vsi from "@vsintellicode/vscode-intellicode-api";
|
|
export declare class PythonSupport implements vsi.IIntelliCodeLanguageSupport {
|
|
private logger;
|
|
getRequestedConfig(): vsi.IRequestedConfigSetting[];
|
|
activate(api: vsi.IIntelliCode, logger: (str: string) => void): Promise<void>;
|
|
private handlePythonExtensionV1;
|
|
private handlePythonExtensionV2;
|
|
private activatePythonExtension;
|
|
private acquireModel;
|
|
}
|