UNPKG

@tabnine/jupyterlab

Version:

JupyterLab client for Tabnine

11 lines (9 loc) 216 B
import { Cell } from "@jupyterlab/cells"; export function dummyFilenameByCellType(cell: Cell) { switch (cell?.model?.type) { case "markdown": return "test.md"; default: return "test.py"; } }