Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions javascript/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import type {
} from '@lumino/coreutils';
import type { IObservableDisposable } from '@lumino/disposable';
import type { ISignal } from '@lumino/signaling';
import { IAwareness } from './awareness.js';

/**
* Changes on Sequence-like data are expressed as Quill-inspired deltas.
Expand Down Expand Up @@ -95,6 +96,11 @@ export interface ISharedDocument extends ISharedBase {
*/
readonly state: JSONObject;

/**
* Document awareness
*/
readonly awareness: IAwareness;

/**
* Get the value for a state attribute
*
Expand Down
Loading