Mark properties readonly

This commit is contained in:
Matt Bierner
2018-02-22 15:11:57 -08:00
parent dac9f9a94e
commit 47dae4cf73

View File

@@ -8,9 +8,9 @@ import VsCodeTelemetryReporter from 'vscode-extension-telemetry';
import { memoize } from './memoize';
interface IPackageInfo {
name: string;
version: string;
aiKey: string;
readonly name: string;
readonly version: string;
readonly aiKey: string;
}
export default class TelemetryReporter {