fix some any-casts in vsocde-api-tests (#270186)

https://github.com/microsoft/vscode/issues/269213
This commit is contained in:
Johannes Rieken
2025-10-07 14:16:31 +02:00
committed by GitHub
parent a728047525
commit 0d1a3c7c7c
4 changed files with 19 additions and 25 deletions

View File

@@ -250,3 +250,7 @@ export class DeferredPromise<T> {
});
}
}
export type Mutable<T> = {
-readonly [P in keyof T]: T[P];
};