| 741 | |
| 742 | export const IKernelSessionFactory = Symbol('IKernelSessionFactory'); |
| 743 | export interface IKernelSessionFactory { |
| 744 | /** |
| 745 | * Creates a notebook. |
| 746 | */ |
| 747 | create(options: KernelSessionCreationOptions): Promise<IKernelSession>; |
| 748 | } |
| 749 | |
| 750 | export interface IKernelSocket { |
| 751 | /** |
no outgoing calls
no test coverage detected