mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
Mark fields readonly
This commit is contained in:
@@ -35,9 +35,9 @@ import { TypeScriptPluginPathsProvider } from './utils/pluginPathsProvider';
|
||||
const localize = nls.loadMessageBundle();
|
||||
|
||||
interface CallbackItem {
|
||||
c: (value: any) => void;
|
||||
e: (err: any) => void;
|
||||
start: number;
|
||||
readonly c: (value: any) => void;
|
||||
readonly e: (err: any) => void;
|
||||
readonly start: number;
|
||||
}
|
||||
|
||||
class CallbackMap {
|
||||
|
||||
Reference in New Issue
Block a user