/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { AttendeeId } from "@fluid-internal/presence-definitions"; import type { ValidatableValueDirectoryOrState } from "@fluid-internal/presence-definitions/internal"; /** * Basic structure of set of {@link Attendee} records within Presence datastore * * @remarks * This exists per named state in State Managers. * * @internal */ export interface ClientRecord> { [AttendeeId: AttendeeId]: TValue; } //# sourceMappingURL=workspaceTypes.d.ts.map