summaryrefslogtreecommitdiff
path: root/cli/tsc
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tsc')
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts52
1 files changed, 26 insertions, 26 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts
index 3ddd0263b..b3f2adc99 100644
--- a/cli/tsc/dts/lib.deno.ns.d.ts
+++ b/cli/tsc/dts/lib.deno.ns.d.ts
@@ -1392,9 +1392,9 @@ declare namespace Deno {
* Implementations should not retain a reference to `p`.
*
* Use
- * [`itereateReader`](https://deno.land/std/streams/conversion.ts?s=iterateReader)
+ * [`itereateReader`](https://deno.land/std/streams/iterate_reader.ts?s=iterateReader)
* from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`std/streams/iterate_reader.ts`](https://deno.land/std/streams/iterate_reader.ts)
* to turn a `Reader` into an {@linkcode AsyncIterator}.
*/
read(p: Uint8Array): Promise<number | null>;
@@ -1426,9 +1426,9 @@ declare namespace Deno {
* Implementations should not retain a reference to `p`.
*
* Use
- * [`itereateReaderSync`](https://deno.land/std/streams/conversion.ts?s=iterateReaderSync)
+ * [`itereateReaderSync`](https://deno.land/std/streams/iterate_reader.ts?s=iterateReaderSync)
* from from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`std/streams/iterate_reader.ts`](https://deno.land/std/streams/iterate_reader.ts)
* to turn a `ReaderSync` into an {@linkcode Iterator}.
*/
readSync(p: Uint8Array): number | null;
@@ -1527,8 +1527,8 @@ declare namespace Deno {
* the first error encountered while copying.
*
* @deprecated Use
- * [`copy`](https://deno.land/std/streams/conversion.ts?s=copy) from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`copy`](https://deno.land/std/streams/copy.ts?s=copy) from
+ * [`std/streams/copy.ts`](https://deno.land/std/streams/copy.ts)
* instead. `Deno.copy` will be removed in the future.
*
* @category I/O
@@ -1547,9 +1547,9 @@ declare namespace Deno {
* Turns a Reader, `r`, into an async iterator.
*
* @deprecated Use
- * [`iterateReader`](https://deno.land/std/streams/conversion.ts?s=iterateReader)
+ * [`iterateReader`](https://deno.land/std/streams/iterate_reader.ts?s=iterateReader)
* from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`std/streams/iterate_reader.ts`](https://deno.land/std/streams/iterate_reader.ts)
* instead. `Deno.iter` will be removed in the future.
*
* @category I/O
@@ -1563,9 +1563,9 @@ declare namespace Deno {
* Turns a ReaderSync, `r`, into an iterator.
*
* @deprecated Use
- * [`iterateReaderSync`](https://deno.land/std/streams/conversion.ts?s=iterateReaderSync)
+ * [`iterateReaderSync`](https://deno.land/std/streams/iterate_reader.ts?s=iterateReaderSync)
* from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`std/streams/iterate_reader.ts`](https://deno.land/std/streams/iterate_reader.ts)
* instead. `Deno.iterSync` will be removed in the future.
*
* @category I/O
@@ -1656,8 +1656,8 @@ declare namespace Deno {
*
* This function is one of the lowest level APIs and most users should not
* work with this directly, but rather use
- * [`readAll()`](https://deno.land/std/streams/conversion.ts?s=readAll) from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`readAll()`](https://deno.land/std/streams/read_all.ts?s=readAll) from
+ * [`std/streams/read_all.ts`](https://deno.land/std/streams/read_all.ts)
* instead.
*
* **It is not guaranteed that the full buffer will be read in a single call.**
@@ -1686,9 +1686,9 @@ declare namespace Deno {
*
* This function is one of the lowest level APIs and most users should not
* work with this directly, but rather use
- * [`readAllSync()`](https://deno.land/std/streams/conversion.ts?s=readAllSync)
+ * [`readAllSync()`](https://deno.land/std/streams/read_all.ts?s=readAllSync)
* from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`std/streams/read_all.ts`](https://deno.land/std/streams/read_all.ts)
* instead.
*
* **It is not guaranteed that the full buffer will be read in a single
@@ -1711,8 +1711,8 @@ declare namespace Deno {
*
* Resolves to the number of bytes written. This function is one of the lowest
* level APIs and most users should not work with this directly, but rather use
- * [`writeAll()`](https://deno.land/std/streams/conversion.ts?s=writeAll) from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`writeAll()`](https://deno.land/std/streams/write_all.ts?s=writeAll) from
+ * [`std/streams/write_all.ts`](https://deno.land/std/streams/write_all.ts)
* instead.
*
* **It is not guaranteed that the full buffer will be written in a single
@@ -1736,9 +1736,9 @@ declare namespace Deno {
* Returns the number of bytes written. This function is one of the lowest
* level APIs and most users should not work with this directly, but rather
* use
- * [`writeAllSync()`](https://deno.land/std/streams/conversion.ts?s=writeAllSync)
+ * [`writeAllSync()`](https://deno.land/std/streams/write_all.ts?s=writeAllSync)
* from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`std/streams/write_all.ts`](https://deno.land/std/streams/write_all.ts)
* instead.
*
* **It is not guaranteed that the full buffer will be written in a single
@@ -2509,8 +2509,8 @@ declare namespace Deno {
* Uint8Array`.
*
* @deprecated Use
- * [`readAll`](https://deno.land/std/streams/conversion.ts?s=readAll) from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`readAll`](https://deno.land/std/streams/read_all.ts?s=readAll) from
+ * [`std/streams/read_all.ts`](https://deno.land/std/streams/read_all.ts)
* instead. `Deno.readAll` will be removed in the future.
*
* @category I/O
@@ -2522,9 +2522,9 @@ declare namespace Deno {
* as `Uint8Array`.
*
* @deprecated Use
- * [`readAllSync`](https://deno.land/std/streams/conversion.ts?s=readAllSync)
+ * [`readAllSync`](https://deno.land/std/streams/read_all.ts?s=readAllSync)
* from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`std/streams/read_all.ts`](https://deno.land/std/streams/read_all.ts)
* instead. `Deno.readAllSync` will be removed in the future.
*
* @category I/O
@@ -2535,8 +2535,8 @@ declare namespace Deno {
* Write all the content of the array buffer (`arr`) to the writer (`w`).
*
* @deprecated Use
- * [`writeAll`](https://deno.land/std/streams/conversion.ts?s=writeAll) from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`writeAll`](https://deno.land/std/streams/write_all.ts?s=writeAll) from
+ * [`std/streams/write_all.ts`](https://deno.land/std/streams/write_all.ts)
* instead. `Deno.writeAll` will be removed in the future.
*
* @category I/O
@@ -2548,9 +2548,9 @@ declare namespace Deno {
* writer (`w`).
*
* @deprecated Use
- * [`writeAllSync`](https://deno.land/std/streams/conversion.ts?s=writeAllSync)
+ * [`writeAllSync`](https://deno.land/std/streams/write_all.ts?s=writeAllSync)
* from
- * [`std/streams/conversion.ts`](https://deno.land/std/streams/conversion.ts)
+ * [`std/streams/write_all.ts`](https://deno.land/std/streams/write_all.ts)
* instead. `Deno.writeAllSync` will be removed in the future.
*
* @category I/O