Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Jul 19, 2023
1 parent 84aa062 commit c71153c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/proposed.api.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

import { Disposable, Event, Uri, extensions } from 'vscode';
import { Disposable, Uri } from 'vscode';

export interface JupyterServerConnectionInformation {
readonly baseUrl: Uri;
Expand Down Expand Up @@ -74,7 +74,7 @@ export class JupyterServerCreationItem extends Disposable {

export class JupyterServerCollection extends Disposable {
/**
* Must be unique and should not change between sessions.
* Identifier must be globally unique.
*/
readonly id: string;
/**
Expand Down Expand Up @@ -114,6 +114,11 @@ export class JupyterServerCollection extends Disposable {
export interface JupyterAPI {
/**
* Provides the ability to register multiple collections of Jupyter Servers.
*
* @param {string} id Identifier must be globally unique.
* @param {string} label
* @return {*} {JupyterServerCollection}
* @memberof JupyterAPI
*/
createServerCollection(id: string, label: string): JupyterServerCollection;
}
Expand Down

0 comments on commit c71153c

Please sign in to comment.