Mark fields readonly

This commit is contained in:
Matt Bierner
2018-05-08 13:45:38 -07:00
parent 8b84e962d1
commit faec3b58b7

View File

@@ -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 {