mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
fix: fix jupyter display function type (#25326)
This commit is contained in:
parent
9bf10aa1e0
commit
3f6740ca52
1 changed files with 6 additions and 3 deletions
9
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
9
cli/tsc/dts/lib.deno.unstable.d.ts
vendored
|
@ -2143,7 +2143,10 @@ declare namespace Deno {
|
||||||
* @category Jupyter
|
* @category Jupyter
|
||||||
* @experimental
|
* @experimental
|
||||||
*/
|
*/
|
||||||
export function display(obj: unknown, options?: DisplayOptions): void;
|
export function display(
|
||||||
|
obj: unknown,
|
||||||
|
options?: DisplayOptions,
|
||||||
|
): Promise<void>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Show Markdown in Jupyter frontends with a tagged template function.
|
* Show Markdown in Jupyter frontends with a tagged template function.
|
||||||
|
@ -2216,12 +2219,12 @@ declare namespace Deno {
|
||||||
* Format an object for displaying in Deno
|
* Format an object for displaying in Deno
|
||||||
*
|
*
|
||||||
* @param obj - The object to be displayed
|
* @param obj - The object to be displayed
|
||||||
* @returns MediaBundle
|
* @returns Promise<MediaBundle>
|
||||||
*
|
*
|
||||||
* @category Jupyter
|
* @category Jupyter
|
||||||
* @experimental
|
* @experimental
|
||||||
*/
|
*/
|
||||||
export function format(obj: unknown): MediaBundle;
|
export function format(obj: unknown): Promise<MediaBundle>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Broadcast a message on IO pub channel.
|
* Broadcast a message on IO pub channel.
|
||||||
|
|
Loading…
Reference in a new issue