We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8555cd commit b6e30dcCopy full SHA for b6e30dc
src/token.ts
@@ -1,9 +1,15 @@
1
import { Token } from '@lumino/coreutils';
2
3
+/**
4
+ * A token for the plugin that provides the list of drives.
5
+ */
6
export const IDrivesList = new Token<IDriveInfo[]>(
7
'@jupyter/drives:drives-list-provider'
8
);
9
10
11
+ * An interface for the available drives.
12
13
export interface IDriveInfo {
14
name: string;
15
region: string;
0 commit comments