/*---------------------------------------------------------------------------------------------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*--------------------------------------------------------------------------------------------*/45export class IdGenerator {67private _prefix: string;8private _lastId: number;910constructor(prefix: string) {11this._prefix = prefix;12this._lastId = 0;13}1415public nextId(): string {16return this._prefix + (++this._lastId);17}18}1920export const defaultGenerator = new IdGenerator('id#');2122