@fluidframework/datastore-definitions 2.0.0-dev.7.4.0.215930 → 2.0.0-dev.7.4.0.216897

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.
@@ -34,6 +34,9 @@ import {
34
34
  } from "@fluidframework/runtime-definitions";
35
35
  import { IChannel } from ".";
36
36
 
37
+ /**
38
+ * @internal
39
+ */
37
40
  export interface IFluidDataStoreRuntimeEvents extends IEvent {
38
41
  (event: "disconnected" | "dispose" | "attaching" | "attached", listener: () => void);
39
42
  (event: "op", listener: (message: ISequencedDocumentMessage) => void);
@@ -43,6 +46,7 @@ export interface IFluidDataStoreRuntimeEvents extends IEvent {
43
46
 
44
47
  /**
45
48
  * Represents the runtime for the data store. Contains helper functions/state of the data store.
49
+ * @internal
46
50
  */
47
51
  export interface IFluidDataStoreRuntime
48
52
  extends IEventProvider<IFluidDataStoreRuntimeEvents>,
package/src/jsonable.ts CHANGED
@@ -40,6 +40,7 @@
40
40
  * ```typescript
41
41
  * function foo<T>(value: Jsonable<T>) { ... }
42
42
  * ```
43
+ * @internal
43
44
  */
44
45
  export type Jsonable<T = any, TReplaced = void> = T extends
45
46
  | undefined
@@ -22,5 +22,6 @@ import { Jsonable } from "./jsonable";
22
22
  * ```typescript
23
23
  * function serialize<T>(value: Serializable<T>) { ... }
24
24
  * ```
25
+ * @internal
25
26
  */
26
27
  export type Serializable<T = any> = Jsonable<T, IFluidHandle>;
package/src/storage.ts CHANGED
@@ -5,6 +5,7 @@
5
5
 
6
6
  /**
7
7
  * Represents the attributes of a channel/DDS.
8
+ * @internal
8
9
  */
9
10
  export interface IChannelAttributes {
10
11
  /**