@fluidframework/container-runtime 2.0.0-rc.3.0.4 → 2.0.0-rc.3.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api-report/container-runtime.api.md +7 -5
- package/dist/containerRuntime.d.ts +1 -1
- package/dist/dataStoreContext.d.ts +1 -1
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/lib/containerRuntime.d.ts +1 -1
- package/lib/dataStoreContext.d.ts +1 -1
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/package.json +20 -20
- package/src/packageVersion.ts +1 -1
- package/dist/public.d.ts +0 -12
- package/lib/public.d.ts +0 -12
|
@@ -30,7 +30,8 @@ import { IEventProvider } from '@fluidframework/core-interfaces';
|
|
|
30
30
|
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions/internal';
|
|
31
31
|
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions/internal';
|
|
32
32
|
import { IFluidDataStoreContextDetached } from '@fluidframework/runtime-definitions/internal';
|
|
33
|
-
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions
|
|
33
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
34
|
+
import { IFluidDataStoreFactory as IFluidDataStoreFactory_2 } from '@fluidframework/runtime-definitions/internal';
|
|
34
35
|
import { IFluidDataStoreRegistry } from '@fluidframework/runtime-definitions/internal';
|
|
35
36
|
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
36
37
|
import { IFluidHandleContext } from '@fluidframework/core-interfaces';
|
|
@@ -50,7 +51,8 @@ import { ISequencedDocumentMessage } from '@fluidframework/protocol-definitions'
|
|
|
50
51
|
import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
51
52
|
import { ISnapshotTree } from '@fluidframework/protocol-definitions';
|
|
52
53
|
import { ISummarizeResult } from '@fluidframework/runtime-definitions/internal';
|
|
53
|
-
import { ISummarizerNodeWithGC } from '@fluidframework/runtime-definitions
|
|
54
|
+
import { ISummarizerNodeWithGC } from '@fluidframework/runtime-definitions';
|
|
55
|
+
import { ISummarizerNodeWithGC as ISummarizerNodeWithGC_2 } from '@fluidframework/runtime-definitions/internal';
|
|
54
56
|
import { ISummaryAck } from '@fluidframework/protocol-definitions';
|
|
55
57
|
import { ISummaryContent } from '@fluidframework/protocol-definitions';
|
|
56
58
|
import { ISummaryNack } from '@fluidframework/protocol-definitions';
|
|
@@ -161,7 +163,7 @@ export class ChannelCollection implements IFluidDataStoreChannel, IDisposable {
|
|
|
161
163
|
}
|
|
162
164
|
|
|
163
165
|
// @internal (undocumented)
|
|
164
|
-
export class ChannelCollectionFactory<T extends ChannelCollection = ChannelCollection> implements
|
|
166
|
+
export class ChannelCollectionFactory<T extends ChannelCollection = ChannelCollection> implements IFluidDataStoreFactory_2 {
|
|
165
167
|
constructor(registryEntries: NamedFluidDataStoreRegistryEntries, provideEntryPoint: (runtime: IFluidDataStoreChannel) => Promise<FluidObject>, ctor: (...args: ConstructorParameters<typeof ChannelCollection>) => T);
|
|
166
168
|
// (undocumented)
|
|
167
169
|
get IFluidDataStoreFactory(): this;
|
|
@@ -498,7 +500,7 @@ export abstract class FluidDataStoreContext extends TypedEventEmitter<IFluidData
|
|
|
498
500
|
// @deprecated (undocumented)
|
|
499
501
|
getBaseGCDetails(): Promise<IGarbageCollectionDetailsBase>;
|
|
500
502
|
// (undocumented)
|
|
501
|
-
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) =>
|
|
503
|
+
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) => ISummarizerNodeWithGC_2;
|
|
502
504
|
getGCData(fullGC?: boolean): Promise<IGarbageCollectionData>;
|
|
503
505
|
// (undocumented)
|
|
504
506
|
abstract getInitialSnapshotDetails(): Promise<ISnapshotDetails>;
|
|
@@ -567,7 +569,7 @@ export abstract class FluidDataStoreContext extends TypedEventEmitter<IFluidData
|
|
|
567
569
|
submitSignal(type: string, content: unknown, targetClientId?: string): void;
|
|
568
570
|
summarize(fullTree?: boolean, trackState?: boolean, telemetryContext?: ITelemetryContext): Promise<ISummarizeResult>;
|
|
569
571
|
// (undocumented)
|
|
570
|
-
protected readonly summarizerNode:
|
|
572
|
+
protected readonly summarizerNode: ISummarizerNodeWithGC_2;
|
|
571
573
|
// (undocumented)
|
|
572
574
|
get tombstoned(): boolean;
|
|
573
575
|
updateUsedRoutes(usedRoutes: string[]): void;
|
|
@@ -541,7 +541,7 @@ export declare class ContainerRuntime extends TypedEventEmitter<IContainerRuntim
|
|
|
541
541
|
/***/
|
|
542
542
|
protected constructor(context: IContainerContext, registry: IFluidDataStoreRegistry, metadata: IContainerRuntimeMetadata | undefined, electedSummarizerData: ISerializedElection | undefined, chunks: [string, string[]][], dataStoreAliasMap: [string, string][], runtimeOptions: Readonly<Required<IContainerRuntimeOptions>>, containerScope: FluidObject, logger: ITelemetryLoggerExt, existing: boolean, blobManagerSnapshot: IBlobManagerLoadInfo, _storage: IDocumentStorageService, createIdCompressor: () => Promise<IIdCompressor & IIdCompressorCore>, documentsSchemaController: DocumentsSchemaController, featureGatesForTelemetry: Record<string, boolean | number | undefined>, provideEntryPoint: (containerRuntime: IContainerRuntime) => Promise<FluidObject>, requestHandler?: ((request: IRequest, runtime: IContainerRuntime) => Promise<IResponse>) | undefined, summaryConfiguration?: ISummaryConfiguration);
|
|
543
543
|
onSchemaChange(schema: IDocumentSchemaCurrent): void;
|
|
544
|
-
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) => import("@fluidframework/runtime-definitions
|
|
544
|
+
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) => import("@fluidframework/runtime-definitions").ISummarizerNodeWithGC;
|
|
545
545
|
deleteChildSummarizerNode(id: string): void;
|
|
546
546
|
makeLocallyVisible(): void;
|
|
547
547
|
setChannelDirty(address: string): void;
|
|
@@ -169,7 +169,7 @@ export declare abstract class FluidDataStoreContext extends TypedEventEmitter<IF
|
|
|
169
169
|
abstract setAttachState(attachState: AttachState.Attaching | AttachState.Attached): void;
|
|
170
170
|
private rejectDeferredRealize;
|
|
171
171
|
realize(): Promise<IFluidDataStoreChannel>;
|
|
172
|
-
protected factoryFromPackagePath(): Promise<import("@fluidframework/runtime-definitions
|
|
172
|
+
protected factoryFromPackagePath(): Promise<import("@fluidframework/runtime-definitions").IFluidDataStoreFactory>;
|
|
173
173
|
private realizeCore;
|
|
174
174
|
/**
|
|
175
175
|
* Notifies this object about changes in the connection state.
|
package/dist/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/container-runtime";
|
|
8
|
-
export declare const pkgVersion = "2.0.0-rc.3.0.
|
|
8
|
+
export declare const pkgVersion = "2.0.0-rc.3.0.6";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/dist/packageVersion.js
CHANGED
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
9
|
exports.pkgVersion = exports.pkgName = void 0;
|
|
10
10
|
exports.pkgName = "@fluidframework/container-runtime";
|
|
11
|
-
exports.pkgVersion = "2.0.0-rc.3.0.
|
|
11
|
+
exports.pkgVersion = "2.0.0-rc.3.0.6";
|
|
12
12
|
//# sourceMappingURL=packageVersion.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,mCAAmC,CAAC;AAC9C,QAAA,UAAU,GAAG,gBAAgB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/container-runtime\";\nexport const pkgVersion = \"2.0.0-rc.3.0.
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;AAEU,QAAA,OAAO,GAAG,mCAAmC,CAAC;AAC9C,QAAA,UAAU,GAAG,gBAAgB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/container-runtime\";\nexport const pkgVersion = \"2.0.0-rc.3.0.6\";\n"]}
|
|
@@ -541,7 +541,7 @@ export declare class ContainerRuntime extends TypedEventEmitter<IContainerRuntim
|
|
|
541
541
|
/***/
|
|
542
542
|
protected constructor(context: IContainerContext, registry: IFluidDataStoreRegistry, metadata: IContainerRuntimeMetadata | undefined, electedSummarizerData: ISerializedElection | undefined, chunks: [string, string[]][], dataStoreAliasMap: [string, string][], runtimeOptions: Readonly<Required<IContainerRuntimeOptions>>, containerScope: FluidObject, logger: ITelemetryLoggerExt, existing: boolean, blobManagerSnapshot: IBlobManagerLoadInfo, _storage: IDocumentStorageService, createIdCompressor: () => Promise<IIdCompressor & IIdCompressorCore>, documentsSchemaController: DocumentsSchemaController, featureGatesForTelemetry: Record<string, boolean | number | undefined>, provideEntryPoint: (containerRuntime: IContainerRuntime) => Promise<FluidObject>, requestHandler?: ((request: IRequest, runtime: IContainerRuntime) => Promise<IResponse>) | undefined, summaryConfiguration?: ISummaryConfiguration);
|
|
543
543
|
onSchemaChange(schema: IDocumentSchemaCurrent): void;
|
|
544
|
-
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) => import("@fluidframework/runtime-definitions
|
|
544
|
+
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) => import("@fluidframework/runtime-definitions").ISummarizerNodeWithGC;
|
|
545
545
|
deleteChildSummarizerNode(id: string): void;
|
|
546
546
|
makeLocallyVisible(): void;
|
|
547
547
|
setChannelDirty(address: string): void;
|
|
@@ -169,7 +169,7 @@ export declare abstract class FluidDataStoreContext extends TypedEventEmitter<IF
|
|
|
169
169
|
abstract setAttachState(attachState: AttachState.Attaching | AttachState.Attached): void;
|
|
170
170
|
private rejectDeferredRealize;
|
|
171
171
|
realize(): Promise<IFluidDataStoreChannel>;
|
|
172
|
-
protected factoryFromPackagePath(): Promise<import("@fluidframework/runtime-definitions
|
|
172
|
+
protected factoryFromPackagePath(): Promise<import("@fluidframework/runtime-definitions").IFluidDataStoreFactory>;
|
|
173
173
|
private realizeCore;
|
|
174
174
|
/**
|
|
175
175
|
* Notifies this object about changes in the connection state.
|
package/lib/packageVersion.d.ts
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY
|
|
6
6
|
*/
|
|
7
7
|
export declare const pkgName = "@fluidframework/container-runtime";
|
|
8
|
-
export declare const pkgVersion = "2.0.0-rc.3.0.
|
|
8
|
+
export declare const pkgVersion = "2.0.0-rc.3.0.6";
|
|
9
9
|
//# sourceMappingURL=packageVersion.d.ts.map
|
package/lib/packageVersion.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,mCAAmC,CAAC;AAC3D,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/container-runtime\";\nexport const pkgVersion = \"2.0.0-rc.3.0.
|
|
1
|
+
{"version":3,"file":"packageVersion.js","sourceRoot":"","sources":["../src/packageVersion.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,mCAAmC,CAAC;AAC3D,MAAM,CAAC,MAAM,UAAU,GAAG,gBAAgB,CAAC","sourcesContent":["/*!\n * Copyright (c) Microsoft Corporation and contributors. All rights reserved.\n * Licensed under the MIT License.\n *\n * THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY\n */\n\nexport const pkgName = \"@fluidframework/container-runtime\";\nexport const pkgVersion = \"2.0.0-rc.3.0.6\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/container-runtime",
|
|
3
|
-
"version": "2.0.0-rc.3.0.
|
|
3
|
+
"version": "2.0.0-rc.3.0.6",
|
|
4
4
|
"description": "Fluid container runtime",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
"exports": {
|
|
16
16
|
".": {
|
|
17
17
|
"import": {
|
|
18
|
-
"types": "./lib/
|
|
18
|
+
"types": "./lib/index.d.ts",
|
|
19
19
|
"default": "./lib/index.js"
|
|
20
20
|
},
|
|
21
21
|
"require": {
|
|
22
|
-
"types": "./dist/
|
|
22
|
+
"types": "./dist/index.d.ts",
|
|
23
23
|
"default": "./dist/index.js"
|
|
24
24
|
}
|
|
25
25
|
},
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
}
|
|
106
106
|
},
|
|
107
107
|
"main": "lib/index.js",
|
|
108
|
-
"types": "lib/
|
|
108
|
+
"types": "lib/index.d.ts",
|
|
109
109
|
"c8": {
|
|
110
110
|
"all": true,
|
|
111
111
|
"cache-dir": "nyc/.cache",
|
|
@@ -127,20 +127,20 @@
|
|
|
127
127
|
"temp-directory": "nyc/.nyc_output"
|
|
128
128
|
},
|
|
129
129
|
"dependencies": {
|
|
130
|
-
"@fluid-internal/client-utils": ">=2.0.0-rc.3.0.
|
|
130
|
+
"@fluid-internal/client-utils": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
131
131
|
"@fluidframework/common-definitions": "^1.1.0",
|
|
132
|
-
"@fluidframework/container-definitions": ">=2.0.0-rc.3.0.
|
|
133
|
-
"@fluidframework/container-runtime-definitions": ">=2.0.0-rc.3.0.
|
|
134
|
-
"@fluidframework/core-interfaces": ">=2.0.0-rc.3.0.
|
|
135
|
-
"@fluidframework/core-utils": ">=2.0.0-rc.3.0.
|
|
136
|
-
"@fluidframework/datastore": ">=2.0.0-rc.3.0.
|
|
137
|
-
"@fluidframework/driver-definitions": ">=2.0.0-rc.3.0.
|
|
138
|
-
"@fluidframework/driver-utils": ">=2.0.0-rc.3.0.
|
|
139
|
-
"@fluidframework/id-compressor": ">=2.0.0-rc.3.0.
|
|
132
|
+
"@fluidframework/container-definitions": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
133
|
+
"@fluidframework/container-runtime-definitions": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
134
|
+
"@fluidframework/core-interfaces": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
135
|
+
"@fluidframework/core-utils": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
136
|
+
"@fluidframework/datastore": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
137
|
+
"@fluidframework/driver-definitions": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
138
|
+
"@fluidframework/driver-utils": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
139
|
+
"@fluidframework/id-compressor": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
140
140
|
"@fluidframework/protocol-definitions": "^3.2.0",
|
|
141
|
-
"@fluidframework/runtime-definitions": ">=2.0.0-rc.3.0.
|
|
142
|
-
"@fluidframework/runtime-utils": ">=2.0.0-rc.3.0.
|
|
143
|
-
"@fluidframework/telemetry-utils": ">=2.0.0-rc.3.0.
|
|
141
|
+
"@fluidframework/runtime-definitions": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
142
|
+
"@fluidframework/runtime-utils": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
143
|
+
"@fluidframework/telemetry-utils": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
144
144
|
"@tylerbu/sorted-btree-es6": "^1.8.0",
|
|
145
145
|
"double-ended-queue": "^2.1.0-0",
|
|
146
146
|
"lz4js": "^0.2.0",
|
|
@@ -149,16 +149,16 @@
|
|
|
149
149
|
"devDependencies": {
|
|
150
150
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
151
151
|
"@biomejs/biome": "^1.6.2",
|
|
152
|
-
"@fluid-internal/mocha-test-setup": ">=2.0.0-rc.3.0.
|
|
153
|
-
"@fluid-private/stochastic-test-utils": ">=2.0.0-rc.3.0.
|
|
154
|
-
"@fluid-private/test-pairwise-generator": ">=2.0.0-rc.3.0.
|
|
152
|
+
"@fluid-internal/mocha-test-setup": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
153
|
+
"@fluid-private/stochastic-test-utils": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
154
|
+
"@fluid-private/test-pairwise-generator": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
155
155
|
"@fluid-tools/benchmark": "^0.48.0",
|
|
156
156
|
"@fluid-tools/build-cli": "^0.37.0",
|
|
157
157
|
"@fluidframework/build-common": "^2.0.3",
|
|
158
158
|
"@fluidframework/build-tools": "^0.37.0",
|
|
159
159
|
"@fluidframework/container-runtime-previous": "npm:@fluidframework/container-runtime@2.0.0-internal.8.0.0",
|
|
160
160
|
"@fluidframework/eslint-config-fluid": "^5.1.0",
|
|
161
|
-
"@fluidframework/test-runtime-utils": ">=2.0.0-rc.3.0.
|
|
161
|
+
"@fluidframework/test-runtime-utils": ">=2.0.0-rc.3.0.6 <2.0.0-rc.3.1.0",
|
|
162
162
|
"@microsoft/api-extractor": "^7.42.3",
|
|
163
163
|
"@types/double-ended-queue": "^2.1.0",
|
|
164
164
|
"@types/mocha": "^9.1.1",
|
package/src/packageVersion.ts
CHANGED
package/dist/public.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
/*
|
|
7
|
-
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
8
|
-
* Generated by "flub generate entrypoints" in @fluidframework/build-tools.
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
export {}
|
|
12
|
-
|
package/lib/public.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
/*
|
|
7
|
-
* THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
|
|
8
|
-
* Generated by "flub generate entrypoints" in @fluidframework/build-tools.
|
|
9
|
-
*/
|
|
10
|
-
|
|
11
|
-
export {}
|
|
12
|
-
|