/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the Source EULA. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { Code } from './code'; import { ILocalizedStrings, ILocaleInfo } from './driver'; export class Localization { constructor(private code: Code) { } async getLocaleInfo(): Promise { return this.code.getLocaleInfo(); } async getLocalizedStrings(): Promise { return this.code.getLocalizedStrings(); } }