mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 22:41:31 +01:00
GitBase - remove the usage of any (#276531)
This commit is contained in:
@@ -123,6 +123,7 @@ export async function getRemoteSourceActions(model: Model, url: string): Promise
|
||||
return remoteSourceActions;
|
||||
}
|
||||
|
||||
export async function pickRemoteSource(model: Model, options: PickRemoteSourceOptions): Promise<string | PickRemoteSourceResult | undefined>;
|
||||
export async function pickRemoteSource(model: Model, options: PickRemoteSourceOptions & { branch?: false | undefined }): Promise<string | undefined>;
|
||||
export async function pickRemoteSource(model: Model, options: PickRemoteSourceOptions & { branch: true }): Promise<PickRemoteSourceResult | undefined>;
|
||||
export async function pickRemoteSource(model: Model, options: PickRemoteSourceOptions = {}): Promise<string | PickRemoteSourceResult | undefined> {
|
||||
|
||||
Reference in New Issue
Block a user