-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f3ca56
commit 01bd241
Showing
3 changed files
with
21 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { IWidgetTracker } from '@jupyterlab/apputils'; | ||
import { Token } from '@lumino/coreutils'; | ||
import type { RisePreview } from './preview'; | ||
|
||
/** | ||
* A class that tracks Rise Preview widgets. | ||
*/ | ||
// eslint-disable-next-line @typescript-eslint/no-empty-interface | ||
export interface IRisePreviewTracker extends IWidgetTracker<RisePreview> {} | ||
|
||
/** | ||
* The Rise Preview tracker token. | ||
*/ | ||
export const IRisePreviewTracker = new Token<IRisePreviewTracker>( | ||
'jupyterlab-rise:IRisePreviewTracker' | ||
); |