Skip to content
Open
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
8 changes: 6 additions & 2 deletions packages/collaborative-drive/src/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
// Distributed under the terms of the Modified BSD License.

import { IAwareness } from '@jupyter/ydoc';
import { Contents, SharedDocumentFactory } from '@jupyterlab/services';
import {
Contents,
IContentProvider,
SharedDocumentFactory
} from '@jupyterlab/services';
import { IDisposable } from '@lumino/disposable';

import { Token } from '@lumino/coreutils';
Expand All @@ -22,7 +26,7 @@ export const IGlobalAwareness = new Token<IAwareness>(
'@jupyter/collaboration:IGlobalAwareness'
);

export interface ICollaborativeContentProvider {
export interface ICollaborativeContentProvider extends IContentProvider {
/**
* SharedModel factory for the YDrive.
*/
Expand Down
Loading