@fluidframework/container-runtime 2.0.0-rc.4.0.8 → 2.0.0-rc.4.0.9
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
|
@@ -32,7 +32,8 @@ import { IEventProvider } from '@fluidframework/core-interfaces';
|
|
|
32
32
|
import { IFluidDataStoreChannel } from '@fluidframework/runtime-definitions/internal';
|
|
33
33
|
import { IFluidDataStoreContext } from '@fluidframework/runtime-definitions/internal';
|
|
34
34
|
import { IFluidDataStoreContextDetached } from '@fluidframework/runtime-definitions/internal';
|
|
35
|
-
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions
|
|
35
|
+
import { IFluidDataStoreFactory } from '@fluidframework/runtime-definitions';
|
|
36
|
+
import { IFluidDataStoreFactory as IFluidDataStoreFactory_2 } from '@fluidframework/runtime-definitions/internal';
|
|
36
37
|
import { IFluidDataStoreRegistry } from '@fluidframework/runtime-definitions/internal';
|
|
37
38
|
import { IFluidHandle } from '@fluidframework/core-interfaces/internal';
|
|
38
39
|
import { IFluidHandleContext } from '@fluidframework/core-interfaces/internal';
|
|
@@ -57,7 +58,8 @@ import { ISignalMessage } from '@fluidframework/protocol-definitions';
|
|
|
57
58
|
import type { ISnapshot } from '@fluidframework/driver-definitions/internal';
|
|
58
59
|
import { ISnapshotTree } from '@fluidframework/protocol-definitions';
|
|
59
60
|
import { ISummarizeResult } from '@fluidframework/runtime-definitions/internal';
|
|
60
|
-
import { ISummarizerNodeWithGC } from '@fluidframework/runtime-definitions
|
|
61
|
+
import { ISummarizerNodeWithGC } from '@fluidframework/runtime-definitions';
|
|
62
|
+
import { ISummarizerNodeWithGC as ISummarizerNodeWithGC_2 } from '@fluidframework/runtime-definitions/internal';
|
|
61
63
|
import { ISummaryAck } from '@fluidframework/protocol-definitions';
|
|
62
64
|
import { ISummaryContent } from '@fluidframework/protocol-definitions';
|
|
63
65
|
import { ISummaryNack } from '@fluidframework/protocol-definitions';
|
|
@@ -168,7 +170,7 @@ export class ChannelCollection implements IFluidDataStoreChannel, IDisposable {
|
|
|
168
170
|
}
|
|
169
171
|
|
|
170
172
|
// @internal (undocumented)
|
|
171
|
-
export class ChannelCollectionFactory<T extends ChannelCollection = ChannelCollection> implements
|
|
173
|
+
export class ChannelCollectionFactory<T extends ChannelCollection = ChannelCollection> implements IFluidDataStoreFactory_2 {
|
|
172
174
|
constructor(registryEntries: NamedFluidDataStoreRegistryEntries, provideEntryPoint: (runtime: IFluidDataStoreChannel) => Promise<FluidObject_2>, ctor: (...args: ConstructorParameters<typeof ChannelCollection>) => T);
|
|
173
175
|
// (undocumented)
|
|
174
176
|
get IFluidDataStoreFactory(): this;
|
|
@@ -504,7 +506,7 @@ export abstract class FluidDataStoreContext extends TypedEventEmitter<IFluidData
|
|
|
504
506
|
// @deprecated (undocumented)
|
|
505
507
|
getBaseGCDetails(): Promise<IGarbageCollectionDetailsBase>;
|
|
506
508
|
// (undocumented)
|
|
507
|
-
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) =>
|
|
509
|
+
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) => ISummarizerNodeWithGC_2;
|
|
508
510
|
getGCData(fullGC?: boolean): Promise<IGarbageCollectionData>;
|
|
509
511
|
// (undocumented)
|
|
510
512
|
abstract getInitialSnapshotDetails(): Promise<ISnapshotDetails>;
|
|
@@ -573,7 +575,7 @@ export abstract class FluidDataStoreContext extends TypedEventEmitter<IFluidData
|
|
|
573
575
|
submitSignal(type: string, content: unknown, targetClientId?: string): void;
|
|
574
576
|
summarize(fullTree?: boolean, trackState?: boolean, telemetryContext?: ITelemetryContext): Promise<ISummarizeResult>;
|
|
575
577
|
// (undocumented)
|
|
576
|
-
protected readonly summarizerNode:
|
|
578
|
+
protected readonly summarizerNode: ISummarizerNodeWithGC_2;
|
|
577
579
|
// (undocumented)
|
|
578
580
|
get tombstoned(): boolean;
|
|
579
581
|
updateUsedRoutes(usedRoutes: string[]): void;
|
|
@@ -524,7 +524,7 @@ export declare class ContainerRuntime extends TypedEventEmitter<IContainerRuntim
|
|
|
524
524
|
/***/
|
|
525
525
|
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);
|
|
526
526
|
onSchemaChange(schema: IDocumentSchemaCurrent): void;
|
|
527
|
-
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) => import("@fluidframework/runtime-definitions
|
|
527
|
+
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) => import("@fluidframework/runtime-definitions").ISummarizerNodeWithGC;
|
|
528
528
|
deleteChildSummarizerNode(id: string): void;
|
|
529
529
|
makeLocallyVisible(): void;
|
|
530
530
|
setChannelDirty(address: string): void;
|
|
@@ -171,7 +171,7 @@ export declare abstract class FluidDataStoreContext extends TypedEventEmitter<IF
|
|
|
171
171
|
abstract setAttachState(attachState: AttachState.Attaching | AttachState.Attached): void;
|
|
172
172
|
private rejectDeferredRealize;
|
|
173
173
|
realize(): Promise<IFluidDataStoreChannel>;
|
|
174
|
-
protected factoryFromPackagePath(): Promise<import("@fluidframework/runtime-definitions
|
|
174
|
+
protected factoryFromPackagePath(): Promise<import("@fluidframework/runtime-definitions").IFluidDataStoreFactory>;
|
|
175
175
|
private realizeCore;
|
|
176
176
|
/**
|
|
177
177
|
* 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.4.0.
|
|
8
|
+
export declare const pkgVersion = "2.0.0-rc.4.0.9";
|
|
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.4.0.
|
|
11
|
+
exports.pkgVersion = "2.0.0-rc.4.0.9";
|
|
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.4.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.4.0.9\";\n"]}
|
|
@@ -524,7 +524,7 @@ export declare class ContainerRuntime extends TypedEventEmitter<IContainerRuntim
|
|
|
524
524
|
/***/
|
|
525
525
|
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);
|
|
526
526
|
onSchemaChange(schema: IDocumentSchemaCurrent): void;
|
|
527
|
-
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) => import("@fluidframework/runtime-definitions
|
|
527
|
+
getCreateChildSummarizerNodeFn(id: string, createParam: CreateChildSummarizerNodeParam): (summarizeInternal: SummarizeInternalFn, getGCDataFn: (fullGC?: boolean) => Promise<IGarbageCollectionData>) => import("@fluidframework/runtime-definitions").ISummarizerNodeWithGC;
|
|
528
528
|
deleteChildSummarizerNode(id: string): void;
|
|
529
529
|
makeLocallyVisible(): void;
|
|
530
530
|
setChannelDirty(address: string): void;
|
|
@@ -171,7 +171,7 @@ export declare abstract class FluidDataStoreContext extends TypedEventEmitter<IF
|
|
|
171
171
|
abstract setAttachState(attachState: AttachState.Attaching | AttachState.Attached): void;
|
|
172
172
|
private rejectDeferredRealize;
|
|
173
173
|
realize(): Promise<IFluidDataStoreChannel>;
|
|
174
|
-
protected factoryFromPackagePath(): Promise<import("@fluidframework/runtime-definitions
|
|
174
|
+
protected factoryFromPackagePath(): Promise<import("@fluidframework/runtime-definitions").IFluidDataStoreFactory>;
|
|
175
175
|
private realizeCore;
|
|
176
176
|
/**
|
|
177
177
|
* 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.4.0.
|
|
8
|
+
export declare const pkgVersion = "2.0.0-rc.4.0.9";
|
|
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.4.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.4.0.9\";\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/container-runtime",
|
|
3
|
-
"version": "2.0.0-rc.4.0.
|
|
3
|
+
"version": "2.0.0-rc.4.0.9",
|
|
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,19 +127,19 @@
|
|
|
127
127
|
"temp-directory": "nyc/.nyc_output"
|
|
128
128
|
},
|
|
129
129
|
"dependencies": {
|
|
130
|
-
"@fluid-internal/client-utils": ">=2.0.0-rc.4.0.
|
|
131
|
-
"@fluidframework/container-definitions": ">=2.0.0-rc.4.0.
|
|
132
|
-
"@fluidframework/container-runtime-definitions": ">=2.0.0-rc.4.0.
|
|
133
|
-
"@fluidframework/core-interfaces": ">=2.0.0-rc.4.0.
|
|
134
|
-
"@fluidframework/core-utils": ">=2.0.0-rc.4.0.
|
|
135
|
-
"@fluidframework/datastore": ">=2.0.0-rc.4.0.
|
|
136
|
-
"@fluidframework/driver-definitions": ">=2.0.0-rc.4.0.
|
|
137
|
-
"@fluidframework/driver-utils": ">=2.0.0-rc.4.0.
|
|
138
|
-
"@fluidframework/id-compressor": ">=2.0.0-rc.4.0.
|
|
130
|
+
"@fluid-internal/client-utils": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
131
|
+
"@fluidframework/container-definitions": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
132
|
+
"@fluidframework/container-runtime-definitions": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
133
|
+
"@fluidframework/core-interfaces": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
134
|
+
"@fluidframework/core-utils": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
135
|
+
"@fluidframework/datastore": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
136
|
+
"@fluidframework/driver-definitions": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
137
|
+
"@fluidframework/driver-utils": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
138
|
+
"@fluidframework/id-compressor": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
139
139
|
"@fluidframework/protocol-definitions": "^3.2.0",
|
|
140
|
-
"@fluidframework/runtime-definitions": ">=2.0.0-rc.4.0.
|
|
141
|
-
"@fluidframework/runtime-utils": ">=2.0.0-rc.4.0.
|
|
142
|
-
"@fluidframework/telemetry-utils": ">=2.0.0-rc.4.0.
|
|
140
|
+
"@fluidframework/runtime-definitions": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
141
|
+
"@fluidframework/runtime-utils": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
142
|
+
"@fluidframework/telemetry-utils": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
143
143
|
"@tylerbu/sorted-btree-es6": "^1.8.0",
|
|
144
144
|
"double-ended-queue": "^2.1.0-0",
|
|
145
145
|
"lz4js": "^0.2.0",
|
|
@@ -148,16 +148,16 @@
|
|
|
148
148
|
"devDependencies": {
|
|
149
149
|
"@arethetypeswrong/cli": "^0.15.2",
|
|
150
150
|
"@biomejs/biome": "^1.6.2",
|
|
151
|
-
"@fluid-internal/mocha-test-setup": ">=2.0.0-rc.4.0.
|
|
152
|
-
"@fluid-private/stochastic-test-utils": ">=2.0.0-rc.4.0.
|
|
153
|
-
"@fluid-private/test-pairwise-generator": ">=2.0.0-rc.4.0.
|
|
151
|
+
"@fluid-internal/mocha-test-setup": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
152
|
+
"@fluid-private/stochastic-test-utils": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
153
|
+
"@fluid-private/test-pairwise-generator": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
154
154
|
"@fluid-tools/benchmark": "^0.48.0",
|
|
155
155
|
"@fluid-tools/build-cli": "^0.38.0",
|
|
156
156
|
"@fluidframework/build-common": "^2.0.3",
|
|
157
157
|
"@fluidframework/build-tools": "^0.38.0",
|
|
158
158
|
"@fluidframework/container-runtime-previous": "npm:@fluidframework/container-runtime@2.0.0-rc.3.0.0",
|
|
159
159
|
"@fluidframework/eslint-config-fluid": "^5.1.0",
|
|
160
|
-
"@fluidframework/test-runtime-utils": ">=2.0.0-rc.4.0.
|
|
160
|
+
"@fluidframework/test-runtime-utils": ">=2.0.0-rc.4.0.9 <2.0.0-rc.4.1.0",
|
|
161
161
|
"@microsoft/api-extractor": "^7.43.1",
|
|
162
162
|
"@types/double-ended-queue": "^2.1.0",
|
|
163
163
|
"@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
|
-
|