/*---------------------------------------------------------------------------------------------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 type EmbeddedProductInfo = {6nameShort: string;7nameLong: string;8applicationName: string;9dataFolderName: string;10darwinBundleIdentifier: string;11darwinSiblingBundleIdentifier?: string;12urlProtocol: string;13win32AppUserModelId: string;14win32MutexName: string;15win32RegValueName: string;16win32NameVersion: string;17win32VersionedUpdate: boolean;18win32SiblingExeBasename?: string;19};202122