function Deno.jupyter.display
unstable
Jump to headingdisplay(obj: unknown,options?: DisplayOptions,): Promise<void>Display function for Jupyter Deno Kernel.
Mimics the behavior of IPython's display(obj, raw=True) function to allow
asynchronous displaying of objects in Jupyter.
Parameters Jump to heading
Jump to headingobj: unknown- The object to be displayed
optional
Jump to headingoptions: DisplayOptions- Display options with a default { raw: true }
Return Type Jump to heading
Promise<void>