Skip to content

Commit b6e30dc

Browse files
committed
add docstrings
1 parent f8555cd commit b6e30dc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/token.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
import { Token } from '@lumino/coreutils';
22

3+
/**
4+
* A token for the plugin that provides the list of drives.
5+
*/
36
export const IDrivesList = new Token<IDriveInfo[]>(
47
'@jupyter/drives:drives-list-provider'
58
);
69

10+
/**
11+
* An interface for the available drives.
12+
*/
713
export interface IDriveInfo {
814
name: string;
915
region: string;

0 commit comments

Comments
 (0)