Skip to content

Commit

Permalink
Mark fields readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
mjbvz committed May 8, 2018
1 parent 8b84e96 commit faec3b5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit faec3b5

Please sign in to comment.