@fluid-experimental/sequence-deprecated 2.0.0-dev-rc.3.0.0.254274 → 2.0.0-dev-rc.3.0.0.254674
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/dist/alpha.d.ts +9 -0
- package/dist/beta.d.ts +9 -0
- package/dist/packageVersion.d.ts +1 -1
- package/dist/packageVersion.js +1 -1
- package/dist/packageVersion.js.map +1 -1
- package/dist/public.d.ts +9 -0
- package/lib/alpha.d.ts +9 -0
- package/lib/beta.d.ts +9 -0
- package/lib/packageVersion.d.ts +1 -1
- package/lib/packageVersion.js +1 -1
- package/lib/packageVersion.js.map +1 -1
- package/lib/public.d.ts +9 -0
- package/package.json +17 -29
- package/src/packageVersion.ts +1 -1
- package/api-extractor-cjs.json +0 -8
- package/dist/sequence-deprecated-alpha.d.ts +0 -58
- package/dist/sequence-deprecated-beta.d.ts +0 -72
- package/dist/sequence-deprecated-public.d.ts +0 -72
- package/dist/sequence-deprecated-untrimmed.d.ts +0 -371
- package/dist/tsdoc-metadata.json +0 -11
- package/lib/sequence-deprecated-alpha.d.ts +0 -58
- package/lib/sequence-deprecated-beta.d.ts +0 -72
- package/lib/sequence-deprecated-public.d.ts +0 -72
- package/lib/sequence-deprecated-untrimmed.d.ts +0 -371
|
@@ -1,371 +0,0 @@
|
|
|
1
|
-
import { BaseSegment } from '@fluidframework/merge-tree/internal';
|
|
2
|
-
import { IChannelAttributes } from '@fluidframework/datastore-definitions';
|
|
3
|
-
import { IChannelFactory } from '@fluidframework/datastore-definitions';
|
|
4
|
-
import { IChannelServices } from '@fluidframework/datastore-definitions';
|
|
5
|
-
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
|
|
6
|
-
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
7
|
-
import { IJSONRunSegment } from '@fluidframework/sequence/internal';
|
|
8
|
-
import { IJSONSegment } from '@fluidframework/merge-tree/internal';
|
|
9
|
-
import { ISegment } from '@fluidframework/merge-tree/internal';
|
|
10
|
-
import { ISharedObject } from '@fluidframework/shared-object-base';
|
|
11
|
-
import { Jsonable } from '@fluidframework/datastore-definitions/internal';
|
|
12
|
-
import { PropertySet } from '@fluidframework/merge-tree/internal';
|
|
13
|
-
import { Serializable } from '@fluidframework/datastore-definitions/internal';
|
|
14
|
-
import { SharedSegmentSequence } from '@fluidframework/sequence/internal';
|
|
15
|
-
import { SharedSequence } from '@fluidframework/sequence/internal';
|
|
16
|
-
import { SubSequence } from '@fluidframework/sequence/internal';
|
|
17
|
-
|
|
18
|
-
export { IJSONRunSegment }
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
* @deprecated `MatrixSegment` is part of an abandoned prototype.
|
|
22
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
23
|
-
* @internal
|
|
24
|
-
*/
|
|
25
|
-
export declare type MatrixSegment = RunSegment | PaddingSegment;
|
|
26
|
-
|
|
27
|
-
/**
|
|
28
|
-
* @deprecated `maxCellPosition` is part of an abandoned prototype.
|
|
29
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
30
|
-
* @internal
|
|
31
|
-
*/
|
|
32
|
-
export declare const maxCellPosition: number;
|
|
33
|
-
|
|
34
|
-
/**
|
|
35
|
-
* @deprecated `maxCol` is part of an abandoned prototype.
|
|
36
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
37
|
-
* @internal
|
|
38
|
-
*/
|
|
39
|
-
export declare const maxCol = 2097152;
|
|
40
|
-
|
|
41
|
-
/**
|
|
42
|
-
* @deprecated `maxCols` is part of an abandoned prototype.
|
|
43
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
44
|
-
* @internal
|
|
45
|
-
*/
|
|
46
|
-
export declare const maxCols: number;
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* @deprecated `maxRow` is part of an abandoned prototype.
|
|
50
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
51
|
-
* @internal
|
|
52
|
-
*/
|
|
53
|
-
export declare const maxRow = 4294967295;
|
|
54
|
-
|
|
55
|
-
/**
|
|
56
|
-
* @deprecated `maxRows` is part of an abandoned prototype.
|
|
57
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
58
|
-
* @internal
|
|
59
|
-
*/
|
|
60
|
-
export declare const maxRows: number;
|
|
61
|
-
|
|
62
|
-
/**
|
|
63
|
-
* An empty segment that occupies 'cachedLength' positions.
|
|
64
|
-
* {@link SparseMatrix} uses `PaddingSegment` to "pad" a run of unoccupied cells.
|
|
65
|
-
*
|
|
66
|
-
* @deprecated `PaddingSegment` is part of an abandoned prototype.
|
|
67
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
68
|
-
* @internal
|
|
69
|
-
*/
|
|
70
|
-
export declare class PaddingSegment extends BaseSegment {
|
|
71
|
-
static readonly typeString = "PaddingSegment";
|
|
72
|
-
static is(segment: ISegment): segment is PaddingSegment;
|
|
73
|
-
static fromJSONObject(spec: any): PaddingSegment | undefined;
|
|
74
|
-
readonly type = "PaddingSegment";
|
|
75
|
-
constructor(size: number);
|
|
76
|
-
toJSONObject(): {
|
|
77
|
-
pad: number;
|
|
78
|
-
props: PropertySet | undefined;
|
|
79
|
-
};
|
|
80
|
-
clone(start?: number, end?: number): PaddingSegment;
|
|
81
|
-
canAppend(segment: ISegment): boolean;
|
|
82
|
-
toString(): string;
|
|
83
|
-
append(segment: ISegment): void;
|
|
84
|
-
removeRange(start: number, end: number): boolean;
|
|
85
|
-
protected createSplitSegmentAt(pos: number): PaddingSegment;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
/**
|
|
89
|
-
* @deprecated `positionToRowCol` is part of an abandoned prototype.
|
|
90
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
export declare function positionToRowCol(position: number): {
|
|
94
|
-
row: number;
|
|
95
|
-
col: number;
|
|
96
|
-
};
|
|
97
|
-
|
|
98
|
-
/**
|
|
99
|
-
* @deprecated `positionToRowCol` is part of an abandoned prototype.
|
|
100
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
101
|
-
* @internal
|
|
102
|
-
*/
|
|
103
|
-
export declare const rowColToPosition: (row: number, col: number) => number;
|
|
104
|
-
|
|
105
|
-
/**
|
|
106
|
-
* @deprecated `RunSegment` is part of an abandoned prototype.
|
|
107
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
108
|
-
* @internal
|
|
109
|
-
*/
|
|
110
|
-
export declare class RunSegment extends SubSequence<SparseMatrixItem> {
|
|
111
|
-
items: SparseMatrixItem[];
|
|
112
|
-
static readonly typeString = "RunSegment";
|
|
113
|
-
static is(segment: ISegment): segment is RunSegment;
|
|
114
|
-
static fromJSONObject(spec: any): RunSegment | undefined;
|
|
115
|
-
readonly type = "RunSegment";
|
|
116
|
-
private tags;
|
|
117
|
-
constructor(items: SparseMatrixItem[]);
|
|
118
|
-
clone(start?: number, end?: number): RunSegment;
|
|
119
|
-
append(segment: ISegment): this;
|
|
120
|
-
removeRange(start: number, end: number): boolean;
|
|
121
|
-
getTag(pos: number): any;
|
|
122
|
-
setTag(pos: number, tag: any): void;
|
|
123
|
-
protected createSplitSegmentAt(pos: number): RunSegment | undefined;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
/**
|
|
127
|
-
* The SharedNumberSequence holds a sequence of numbers. Each number will be stored
|
|
128
|
-
* at a position within the sequence. See the
|
|
129
|
-
* {@link https://fluidframework.com/docs/data-structures/sequences/ | sequence documentation}
|
|
130
|
-
* for details on working with sequences.
|
|
131
|
-
*
|
|
132
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
133
|
-
* For more info, please see {@link https://github.com/microsoft/FluidFramework/issues/8526 | Github issue 8526}.
|
|
134
|
-
* @internal
|
|
135
|
-
*/
|
|
136
|
-
export declare class SharedNumberSequence extends SharedSequence<number> {
|
|
137
|
-
id: string;
|
|
138
|
-
/**
|
|
139
|
-
* Create a new shared number sequence
|
|
140
|
-
*
|
|
141
|
-
* @param runtime - data store runtime the new shared number sequence belongs to
|
|
142
|
-
* @param id - optional name of the shared number sequence
|
|
143
|
-
* @returns newly create shared number sequence (but not attached yet)
|
|
144
|
-
*
|
|
145
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
146
|
-
* For more info, please see {@link https://github.com/microsoft/FluidFramework/issues/8526 | Github issue 8526}.
|
|
147
|
-
*/
|
|
148
|
-
static create(runtime: IFluidDataStoreRuntime, id?: string): SharedNumberSequence;
|
|
149
|
-
/**
|
|
150
|
-
* Get a factory for SharedNumberSequence to register with the data store.
|
|
151
|
-
*
|
|
152
|
-
* @returns a factory that creates and load SharedNumberSequence
|
|
153
|
-
*
|
|
154
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
155
|
-
* For more info, please see {@link https://github.com/microsoft/FluidFramework/issues/8526 | Github issue 8526}.
|
|
156
|
-
*/
|
|
157
|
-
static getFactory(): SharedNumberSequenceFactory;
|
|
158
|
-
/**
|
|
159
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
160
|
-
* For more info, please see {@link https://github.com/microsoft/FluidFramework/issues/8526 | Github issue 8526}.
|
|
161
|
-
*/
|
|
162
|
-
constructor(document: IFluidDataStoreRuntime, id: string, attributes: IChannelAttributes);
|
|
163
|
-
/**
|
|
164
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
165
|
-
* For more info, please see {@link https://github.com/microsoft/FluidFramework/issues/8526 | Github issue 8526}.
|
|
166
|
-
*/
|
|
167
|
-
getRange(start: number, end?: number): number[];
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
/**
|
|
171
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
172
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
173
|
-
* @internal
|
|
174
|
-
*/
|
|
175
|
-
export declare class SharedNumberSequenceFactory implements IChannelFactory {
|
|
176
|
-
/**
|
|
177
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
178
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
179
|
-
*/
|
|
180
|
-
static Type: string;
|
|
181
|
-
/**
|
|
182
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
183
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
184
|
-
*/
|
|
185
|
-
static readonly Attributes: IChannelAttributes;
|
|
186
|
-
/**
|
|
187
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
188
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
189
|
-
*/
|
|
190
|
-
static segmentFromSpec(segSpec: IJSONSegment): SubSequence<number>;
|
|
191
|
-
/**
|
|
192
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
193
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
194
|
-
*/
|
|
195
|
-
get type(): string;
|
|
196
|
-
/**
|
|
197
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
198
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
199
|
-
*/
|
|
200
|
-
get attributes(): IChannelAttributes;
|
|
201
|
-
/**
|
|
202
|
-
* {@inheritDoc @fluidframework/datastore-definitions#IChannelFactory.load}
|
|
203
|
-
*
|
|
204
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
205
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
206
|
-
*/
|
|
207
|
-
load(runtime: IFluidDataStoreRuntime, id: string, services: IChannelServices, attributes: IChannelAttributes): Promise<ISharedObject>;
|
|
208
|
-
/**
|
|
209
|
-
* @deprecated SharedNumberSequence is not recommended for use and will be removed in an upcoming release.
|
|
210
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
211
|
-
*/
|
|
212
|
-
create(document: IFluidDataStoreRuntime, id: string): ISharedObject;
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
/**
|
|
216
|
-
* The SharedObjectSequence holds a sequence of serializable objects. Each object will be stored
|
|
217
|
-
* at a position within the sequence. See the
|
|
218
|
-
* {@link https://fluidframework.com/docs/data-structures/sequences/ | sequence documentation}
|
|
219
|
-
* for details on working with sequences.
|
|
220
|
-
*
|
|
221
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
222
|
-
* For more info, please see {@link https://github.com/microsoft/FluidFramework/issues/8526 | Github issue 8526}.
|
|
223
|
-
* @internal
|
|
224
|
-
*/
|
|
225
|
-
export declare class SharedObjectSequence<T> extends SharedSequence<T> {
|
|
226
|
-
id: string;
|
|
227
|
-
/**
|
|
228
|
-
* Create a new shared object sequence
|
|
229
|
-
*
|
|
230
|
-
* @param runtime - data store runtime the new shared object sequence belongs to
|
|
231
|
-
* @param id - optional name of the shared object sequence
|
|
232
|
-
* @returns newly create shared object sequence (but not attached yet)
|
|
233
|
-
*
|
|
234
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
235
|
-
* For more info, please see {@link https://github.com/microsoft/FluidFramework/issues/8526 | Github issue 8526}.
|
|
236
|
-
*/
|
|
237
|
-
static create<T>(runtime: IFluidDataStoreRuntime, id?: string): SharedObjectSequence<T>;
|
|
238
|
-
/**
|
|
239
|
-
* Get a factory for SharedObjectSequence to register with the data store.
|
|
240
|
-
*
|
|
241
|
-
* @returns a factory that creates and load SharedObjectSequence
|
|
242
|
-
*
|
|
243
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
244
|
-
* For more info, please see {@link https://github.com/microsoft/FluidFramework/issues/8526 | Github issue 8526}.
|
|
245
|
-
*/
|
|
246
|
-
static getFactory(): SharedObjectSequenceFactory;
|
|
247
|
-
/**
|
|
248
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
249
|
-
* For more info, please see {@link https://github.com/microsoft/FluidFramework/issues/8526 | Github issue 8526}.
|
|
250
|
-
*/
|
|
251
|
-
constructor(document: IFluidDataStoreRuntime, id: string, attributes: IChannelAttributes);
|
|
252
|
-
/**
|
|
253
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
254
|
-
* For more info, please see {@link https://github.com/microsoft/FluidFramework/issues/8526 | Github issue 8526}.
|
|
255
|
-
*/
|
|
256
|
-
getRange(start: number, end?: number): Serializable<T>[];
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
/**
|
|
260
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
261
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
262
|
-
* @internal
|
|
263
|
-
*/
|
|
264
|
-
export declare class SharedObjectSequenceFactory implements IChannelFactory {
|
|
265
|
-
/**
|
|
266
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
267
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
268
|
-
*/
|
|
269
|
-
static Type: string;
|
|
270
|
-
/**
|
|
271
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
272
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
273
|
-
*/
|
|
274
|
-
static readonly Attributes: IChannelAttributes;
|
|
275
|
-
/**
|
|
276
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
277
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
278
|
-
*/
|
|
279
|
-
static segmentFromSpec(segSpec: IJSONSegment): SubSequence<object>;
|
|
280
|
-
/**
|
|
281
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
282
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
283
|
-
*/
|
|
284
|
-
get type(): string;
|
|
285
|
-
/**
|
|
286
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
287
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
288
|
-
*/
|
|
289
|
-
get attributes(): IChannelAttributes;
|
|
290
|
-
/**
|
|
291
|
-
* {@inheritDoc @fluidframework/datastore-definitions#IChannelFactory.load}
|
|
292
|
-
*
|
|
293
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
294
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
295
|
-
*/
|
|
296
|
-
load(runtime: IFluidDataStoreRuntime, id: string, services: IChannelServices, attributes: IChannelAttributes): Promise<ISharedObject>;
|
|
297
|
-
/**
|
|
298
|
-
* @deprecated SharedObjectSequence is not recommended for use and will be removed in an upcoming release.
|
|
299
|
-
* For more info, please see [Github issue 8526](https://github.com/microsoft/FluidFramework/issues/8526)
|
|
300
|
-
*/
|
|
301
|
-
create(document: IFluidDataStoreRuntime, id: string): ISharedObject;
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
export { SharedSequence }
|
|
305
|
-
|
|
306
|
-
/**
|
|
307
|
-
* @deprecated `SparseMatrix` is an abandoned prototype.
|
|
308
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
309
|
-
* @internal
|
|
310
|
-
*/
|
|
311
|
-
export declare class SparseMatrix extends SharedSegmentSequence<MatrixSegment> {
|
|
312
|
-
id: string;
|
|
313
|
-
/**
|
|
314
|
-
* Create a new sparse matrix
|
|
315
|
-
*
|
|
316
|
-
* @param runtime - data store runtime the new sparse matrix belongs to
|
|
317
|
-
* @param id - optional name of the sparse matrix
|
|
318
|
-
* @returns newly create sparse matrix (but not attached yet)
|
|
319
|
-
*/
|
|
320
|
-
static create(runtime: IFluidDataStoreRuntime, id?: string): SparseMatrix;
|
|
321
|
-
/**
|
|
322
|
-
* Get a factory for SharedMap to register with the data store.
|
|
323
|
-
*
|
|
324
|
-
* @returns a factory that creates and load SharedMap
|
|
325
|
-
*/
|
|
326
|
-
static getFactory(): IChannelFactory;
|
|
327
|
-
constructor(document: IFluidDataStoreRuntime, id: string, attributes: IChannelAttributes);
|
|
328
|
-
get numRows(): number;
|
|
329
|
-
setItems(row: number, col: number, values: SparseMatrixItem[], props?: PropertySet): void;
|
|
330
|
-
getItem(row: number, col: number): // The return type is defined explicitly here to prevent TypeScript from generating dynamic imports
|
|
331
|
-
Jsonable<string | number | boolean | IFluidHandle> | undefined;
|
|
332
|
-
getTag(row: number, col: number): any;
|
|
333
|
-
setTag(row: number, col: number, tag: any): void;
|
|
334
|
-
insertRows(row: number, numRows: number): void;
|
|
335
|
-
removeRows(row: number, numRows: number): void;
|
|
336
|
-
insertCols(col: number, numCols: number): void;
|
|
337
|
-
removeCols(col: number, numCols: number): void;
|
|
338
|
-
annotatePosition(row: number, col: number, props: PropertySet): void;
|
|
339
|
-
getPositionProperties(row: number, col: number): PropertySet | undefined;
|
|
340
|
-
private moveAsPadding;
|
|
341
|
-
private getSegment;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
/**
|
|
345
|
-
* @deprecated `SparseMatrixFactory` is an abandoned prototype.
|
|
346
|
-
* Use {@link @fluidframework/matrix#SharedMatrixFactory} instead.
|
|
347
|
-
* @internal
|
|
348
|
-
*/
|
|
349
|
-
export declare class SparseMatrixFactory implements IChannelFactory {
|
|
350
|
-
static Type: string;
|
|
351
|
-
static Attributes: IChannelAttributes;
|
|
352
|
-
static segmentFromSpec(spec: IJSONSegment): ISegment;
|
|
353
|
-
get type(): string;
|
|
354
|
-
get attributes(): IChannelAttributes;
|
|
355
|
-
/**
|
|
356
|
-
* {@inheritDoc @fluidframework/datastore-definitions#IChannelFactory.load}
|
|
357
|
-
*/
|
|
358
|
-
load(runtime: IFluidDataStoreRuntime, id: string, services: IChannelServices, attributes: IChannelAttributes): Promise<ISharedObject>;
|
|
359
|
-
create(document: IFluidDataStoreRuntime, id: string): ISharedObject;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
/**
|
|
363
|
-
* @deprecated `SparseMatrixItem` is part of an abandoned prototype.
|
|
364
|
-
* Use {@link @fluidframework/matrix#SharedMatrix} instead.
|
|
365
|
-
* @internal
|
|
366
|
-
*/
|
|
367
|
-
export declare type SparseMatrixItem = any;
|
|
368
|
-
|
|
369
|
-
export { SubSequence }
|
|
370
|
-
|
|
371
|
-
export { }
|
package/dist/tsdoc-metadata.json
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// This file is read by tools that parse documentation comments conforming to the TSDoc standard.
|
|
2
|
-
// It should be published with your NPM package. It should not be tracked by Git.
|
|
3
|
-
{
|
|
4
|
-
"tsdocVersion": "0.12",
|
|
5
|
-
"toolPackages": [
|
|
6
|
-
{
|
|
7
|
-
"packageName": "@microsoft/api-extractor",
|
|
8
|
-
"packageVersion": "7.42.3"
|
|
9
|
-
}
|
|
10
|
-
]
|
|
11
|
-
}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { BaseSegment } from '@fluidframework/merge-tree/internal';
|
|
2
|
-
import { IChannelAttributes } from '@fluidframework/datastore-definitions';
|
|
3
|
-
import { IChannelFactory } from '@fluidframework/datastore-definitions';
|
|
4
|
-
import { IChannelServices } from '@fluidframework/datastore-definitions';
|
|
5
|
-
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
|
|
6
|
-
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
7
|
-
import { IJSONRunSegment } from '@fluidframework/sequence/internal';
|
|
8
|
-
import { IJSONSegment } from '@fluidframework/merge-tree/internal';
|
|
9
|
-
import { ISegment } from '@fluidframework/merge-tree/internal';
|
|
10
|
-
import { ISharedObject } from '@fluidframework/shared-object-base';
|
|
11
|
-
import { Jsonable } from '@fluidframework/datastore-definitions/internal';
|
|
12
|
-
import { PropertySet } from '@fluidframework/merge-tree/internal';
|
|
13
|
-
import { Serializable } from '@fluidframework/datastore-definitions/internal';
|
|
14
|
-
import { SharedSegmentSequence } from '@fluidframework/sequence/internal';
|
|
15
|
-
import { SharedSequence } from '@fluidframework/sequence/internal';
|
|
16
|
-
import { SubSequence } from '@fluidframework/sequence/internal';
|
|
17
|
-
|
|
18
|
-
/* Excluded from this release type: IJSONRunSegment */
|
|
19
|
-
|
|
20
|
-
/* Excluded from this release type: MatrixSegment */
|
|
21
|
-
|
|
22
|
-
/* Excluded from this release type: maxCellPosition */
|
|
23
|
-
|
|
24
|
-
/* Excluded from this release type: maxCol */
|
|
25
|
-
|
|
26
|
-
/* Excluded from this release type: maxCols */
|
|
27
|
-
|
|
28
|
-
/* Excluded from this release type: maxRow */
|
|
29
|
-
|
|
30
|
-
/* Excluded from this release type: maxRows */
|
|
31
|
-
|
|
32
|
-
/* Excluded from this release type: PaddingSegment */
|
|
33
|
-
|
|
34
|
-
/* Excluded from this release type: positionToRowCol */
|
|
35
|
-
|
|
36
|
-
/* Excluded from this release type: rowColToPosition */
|
|
37
|
-
|
|
38
|
-
/* Excluded from this release type: RunSegment */
|
|
39
|
-
|
|
40
|
-
/* Excluded from this release type: SharedNumberSequence */
|
|
41
|
-
|
|
42
|
-
/* Excluded from this release type: SharedNumberSequenceFactory */
|
|
43
|
-
|
|
44
|
-
/* Excluded from this release type: SharedObjectSequence */
|
|
45
|
-
|
|
46
|
-
/* Excluded from this release type: SharedObjectSequenceFactory */
|
|
47
|
-
|
|
48
|
-
/* Excluded from this release type: SharedSequence */
|
|
49
|
-
|
|
50
|
-
/* Excluded from this release type: SparseMatrix */
|
|
51
|
-
|
|
52
|
-
/* Excluded from this release type: SparseMatrixFactory */
|
|
53
|
-
|
|
54
|
-
/* Excluded from this release type: SparseMatrixItem */
|
|
55
|
-
|
|
56
|
-
/* Excluded from this release type: SubSequence */
|
|
57
|
-
|
|
58
|
-
export { }
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { BaseSegment } from '@fluidframework/merge-tree/internal';
|
|
2
|
-
import { IChannelAttributes } from '@fluidframework/datastore-definitions';
|
|
3
|
-
import { IChannelFactory } from '@fluidframework/datastore-definitions';
|
|
4
|
-
import { IChannelServices } from '@fluidframework/datastore-definitions';
|
|
5
|
-
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
|
|
6
|
-
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
7
|
-
import { IJSONRunSegment } from '@fluidframework/sequence/internal';
|
|
8
|
-
import { IJSONSegment } from '@fluidframework/merge-tree/internal';
|
|
9
|
-
import { ISegment } from '@fluidframework/merge-tree/internal';
|
|
10
|
-
import { ISharedObject } from '@fluidframework/shared-object-base';
|
|
11
|
-
import { Jsonable } from '@fluidframework/datastore-definitions/internal';
|
|
12
|
-
import { PropertySet } from '@fluidframework/merge-tree/internal';
|
|
13
|
-
import { Serializable } from '@fluidframework/datastore-definitions/internal';
|
|
14
|
-
import { SharedSegmentSequence } from '@fluidframework/sequence/internal';
|
|
15
|
-
import { SharedSequence } from '@fluidframework/sequence/internal';
|
|
16
|
-
import { SubSequence } from '@fluidframework/sequence/internal';
|
|
17
|
-
|
|
18
|
-
/* Excluded from this release type: BaseSegment */
|
|
19
|
-
|
|
20
|
-
/* Excluded from this release type: IJSONRunSegment */
|
|
21
|
-
|
|
22
|
-
/* Excluded from this release type: IJSONSegment */
|
|
23
|
-
|
|
24
|
-
/* Excluded from this release type: ISegment */
|
|
25
|
-
|
|
26
|
-
/* Excluded from this release type: Jsonable */
|
|
27
|
-
|
|
28
|
-
/* Excluded from this release type: MatrixSegment */
|
|
29
|
-
|
|
30
|
-
/* Excluded from this release type: maxCellPosition */
|
|
31
|
-
|
|
32
|
-
/* Excluded from this release type: maxCol */
|
|
33
|
-
|
|
34
|
-
/* Excluded from this release type: maxCols */
|
|
35
|
-
|
|
36
|
-
/* Excluded from this release type: maxRow */
|
|
37
|
-
|
|
38
|
-
/* Excluded from this release type: maxRows */
|
|
39
|
-
|
|
40
|
-
/* Excluded from this release type: PaddingSegment */
|
|
41
|
-
|
|
42
|
-
/* Excluded from this release type: positionToRowCol */
|
|
43
|
-
|
|
44
|
-
/* Excluded from this release type: PropertySet */
|
|
45
|
-
|
|
46
|
-
/* Excluded from this release type: rowColToPosition */
|
|
47
|
-
|
|
48
|
-
/* Excluded from this release type: RunSegment */
|
|
49
|
-
|
|
50
|
-
/* Excluded from this release type: Serializable */
|
|
51
|
-
|
|
52
|
-
/* Excluded from this release type: SharedNumberSequence */
|
|
53
|
-
|
|
54
|
-
/* Excluded from this release type: SharedNumberSequenceFactory */
|
|
55
|
-
|
|
56
|
-
/* Excluded from this release type: SharedObjectSequence */
|
|
57
|
-
|
|
58
|
-
/* Excluded from this release type: SharedObjectSequenceFactory */
|
|
59
|
-
|
|
60
|
-
/* Excluded from this release type: SharedSegmentSequence */
|
|
61
|
-
|
|
62
|
-
/* Excluded from this release type: SharedSequence */
|
|
63
|
-
|
|
64
|
-
/* Excluded from this release type: SparseMatrix */
|
|
65
|
-
|
|
66
|
-
/* Excluded from this release type: SparseMatrixFactory */
|
|
67
|
-
|
|
68
|
-
/* Excluded from this release type: SparseMatrixItem */
|
|
69
|
-
|
|
70
|
-
/* Excluded from this release type: SubSequence */
|
|
71
|
-
|
|
72
|
-
export { }
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { BaseSegment } from '@fluidframework/merge-tree/internal';
|
|
2
|
-
import { IChannelAttributes } from '@fluidframework/datastore-definitions';
|
|
3
|
-
import { IChannelFactory } from '@fluidframework/datastore-definitions';
|
|
4
|
-
import { IChannelServices } from '@fluidframework/datastore-definitions';
|
|
5
|
-
import { IFluidDataStoreRuntime } from '@fluidframework/datastore-definitions';
|
|
6
|
-
import { IFluidHandle } from '@fluidframework/core-interfaces';
|
|
7
|
-
import { IJSONRunSegment } from '@fluidframework/sequence/internal';
|
|
8
|
-
import { IJSONSegment } from '@fluidframework/merge-tree/internal';
|
|
9
|
-
import { ISegment } from '@fluidframework/merge-tree/internal';
|
|
10
|
-
import { ISharedObject } from '@fluidframework/shared-object-base';
|
|
11
|
-
import { Jsonable } from '@fluidframework/datastore-definitions/internal';
|
|
12
|
-
import { PropertySet } from '@fluidframework/merge-tree/internal';
|
|
13
|
-
import { Serializable } from '@fluidframework/datastore-definitions/internal';
|
|
14
|
-
import { SharedSegmentSequence } from '@fluidframework/sequence/internal';
|
|
15
|
-
import { SharedSequence } from '@fluidframework/sequence/internal';
|
|
16
|
-
import { SubSequence } from '@fluidframework/sequence/internal';
|
|
17
|
-
|
|
18
|
-
/* Excluded from this release type: BaseSegment */
|
|
19
|
-
|
|
20
|
-
/* Excluded from this release type: IJSONRunSegment */
|
|
21
|
-
|
|
22
|
-
/* Excluded from this release type: IJSONSegment */
|
|
23
|
-
|
|
24
|
-
/* Excluded from this release type: ISegment */
|
|
25
|
-
|
|
26
|
-
/* Excluded from this release type: Jsonable */
|
|
27
|
-
|
|
28
|
-
/* Excluded from this release type: MatrixSegment */
|
|
29
|
-
|
|
30
|
-
/* Excluded from this release type: maxCellPosition */
|
|
31
|
-
|
|
32
|
-
/* Excluded from this release type: maxCol */
|
|
33
|
-
|
|
34
|
-
/* Excluded from this release type: maxCols */
|
|
35
|
-
|
|
36
|
-
/* Excluded from this release type: maxRow */
|
|
37
|
-
|
|
38
|
-
/* Excluded from this release type: maxRows */
|
|
39
|
-
|
|
40
|
-
/* Excluded from this release type: PaddingSegment */
|
|
41
|
-
|
|
42
|
-
/* Excluded from this release type: positionToRowCol */
|
|
43
|
-
|
|
44
|
-
/* Excluded from this release type: PropertySet */
|
|
45
|
-
|
|
46
|
-
/* Excluded from this release type: rowColToPosition */
|
|
47
|
-
|
|
48
|
-
/* Excluded from this release type: RunSegment */
|
|
49
|
-
|
|
50
|
-
/* Excluded from this release type: Serializable */
|
|
51
|
-
|
|
52
|
-
/* Excluded from this release type: SharedNumberSequence */
|
|
53
|
-
|
|
54
|
-
/* Excluded from this release type: SharedNumberSequenceFactory */
|
|
55
|
-
|
|
56
|
-
/* Excluded from this release type: SharedObjectSequence */
|
|
57
|
-
|
|
58
|
-
/* Excluded from this release type: SharedObjectSequenceFactory */
|
|
59
|
-
|
|
60
|
-
/* Excluded from this release type: SharedSegmentSequence */
|
|
61
|
-
|
|
62
|
-
/* Excluded from this release type: SharedSequence */
|
|
63
|
-
|
|
64
|
-
/* Excluded from this release type: SparseMatrix */
|
|
65
|
-
|
|
66
|
-
/* Excluded from this release type: SparseMatrixFactory */
|
|
67
|
-
|
|
68
|
-
/* Excluded from this release type: SparseMatrixItem */
|
|
69
|
-
|
|
70
|
-
/* Excluded from this release type: SubSequence */
|
|
71
|
-
|
|
72
|
-
export { }
|