/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { Code } from './code';6import { ILocalizedStrings, ILocaleInfo } from './driver';78export class Localization {9constructor(private code: Code) { }1011async getLocaleInfo(): Promise<ILocaleInfo> {12return this.code.getLocaleInfo();13}1415async getLocalizedStrings(): Promise<ILocalizedStrings> {16return this.code.getLocalizedStrings();17}18}192021