mirror of
https://github.com/denoland/deno.git
synced 2024-10-29 08:58:01 -04:00
chore: fix typo in lib.deno_core.d.ts (#9416)
This commit is contained in:
parent
a601d94aa1
commit
45b465f839
1 changed files with 2 additions and 2 deletions
4
core/lib.deno_core.d.ts
vendored
4
core/lib.deno_core.d.ts
vendored
|
@ -7,14 +7,14 @@
|
||||||
|
|
||||||
declare namespace Deno {
|
declare namespace Deno {
|
||||||
declare namespace core {
|
declare namespace core {
|
||||||
/** Send a JSON op to Rust, and synchronously recieve the result. */
|
/** Send a JSON op to Rust, and synchronously receive the result. */
|
||||||
function jsonOpSync(
|
function jsonOpSync(
|
||||||
opName: string,
|
opName: string,
|
||||||
args: any,
|
args: any,
|
||||||
...zeroCopy: Uint8Array[]
|
...zeroCopy: Uint8Array[]
|
||||||
): any;
|
): any;
|
||||||
|
|
||||||
/** Send a JSON op to Rust, and asynchronously recieve the result. */
|
/** Send a JSON op to Rust, and asynchronously receive the result. */
|
||||||
function jsonOpAsync(
|
function jsonOpAsync(
|
||||||
opName: string,
|
opName: string,
|
||||||
args: any,
|
args: any,
|
||||||
|
|
Loading…
Reference in a new issue