Interface KernelSourceActionProvider

interface KernelSourceActionProvider {
    onDidChangeSourceActions?: Event<void>;
    viewType: string;
    provideKernelSourceActions(): Promise<NotebookKernelSourceAction[]>;
}

Properties

onDidChangeSourceActions?: Event<void>
viewType: string

Methods