// Copyright (c) Microsoft Corporation.// Licensed under the MIT License.// Necessary to help coerce `keyof T` keys to strings. Only used internally to this class.exportconst stringify = <K extendsstring | number | symbol>(k: K): string =>typeof k === 'string' ? k : k.toString();