/*! * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the Microsoft Live Share SDK License. */ export type SharedMapInitialData = | Map | readonly (readonly [string, T])[] | { [key: string]: T } | undefined;