/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { IWebSocket } from "@fluidframework/server-services-core"; import type { INexusLambdaConnectionStateTrackers, INexusLambdaDependencies, INexusLambdaSettings } from "./interfaces"; /** * Perform necessary cleanup when a client disconnects from a document. * @internal */ export declare function disconnectDocument(socket: IWebSocket, nexusLambdaDependencies: INexusLambdaDependencies, nexusLambdaSettings: INexusLambdaSettings, nexusLambdaConnectionStateTrackers: INexusLambdaConnectionStateTrackers): Promise; //# sourceMappingURL=disconnect.d.ts.map