mirror of
https://github.com/microsoft/vscode.git
synced 2026-06-04 22:54:33 +01:00
333d9a4053
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
9 lines
424 B
TypeScript
9 lines
424 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
export class MockProgress<T> {
|
|
report(_value: T): void {
|
|
// noop
|
|
}
|
|
} |