/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ /// import { EventEmitter } from "events"; import { ICollection, IContext, IPartitionLambda, IPartitionLambdaFactory, MongoManager } from "@fluidframework/server-services-core"; /** * @internal */ export declare class CopierLambdaFactory extends EventEmitter implements IPartitionLambdaFactory { private readonly mongoManager; private readonly rawOpCollection; constructor(mongoManager: MongoManager, rawOpCollection: ICollection); create(config: undefined, context: IContext): Promise; dispose(): Promise; } //# sourceMappingURL=lambdaFactory.d.ts.map