(options: {
contents?: string;
extension: string;
})
| 238 | } |
| 239 | |
| 240 | export async function createTemporaryFile(options: { |
| 241 | contents?: string; |
| 242 | extension: string; |
| 243 | }): Promise<{ file: Uri } & IDisposable> { |
| 244 | return API.createTemporaryFile(options); |
| 245 | } |
| 246 | |
| 247 | export async function startJupyterServer(options?: { |
| 248 | token?: string; |
no outgoing calls
no test coverage detected