| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent bebb473 commit 1977348
4 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1114,7 +1114,7 @@ function lazyLoadRimraf() { | |||
| 1114 | 1114 | /** | |
| 1115 | 1115 | * Asynchronously removes a directory. | |
| 1116 | 1116 | * @param {string | Buffer | URL} path | |
| 1117 | - * @param {{}} [options] | ||
| 1117 | + * @param {object} [options] | ||
| 1118 | 1118 | * @param {(err?: Error) => any} callback | |
| 1119 | 1119 | * @returns {void} | |
| 1120 | 1120 | */ | |
@@ -1148,7 +1148,7 @@ function rmdir(path, options, callback) { | |||
| 1148 | 1148 | /** | |
| 1149 | 1149 | * Synchronously removes a directory. | |
| 1150 | 1150 | * @param {string | Buffer | URL} path | |
| 1151 | - * @param {{}} [options] | ||
| 1151 | + * @param {object} [options] | ||
| 1152 | 1152 | * @returns {void} | |
| 1153 | 1153 | */ | |
| 1154 | 1154 | function rmdirSync(path, options) { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1004,7 +1004,7 @@ class QuicSession { | |||
| 1004 | 1004 | #onstream = undefined; | |
| 1005 | 1005 | /** @type {OnDatagramCallback|undefined} */ | |
| 1006 | 1006 | #ondatagram = undefined; | |
| 1007 | - /** @type {{}} */ | ||
| 1007 | + /** @type {object|undefined} */ | ||
| 1008 | 1008 | #sessionticket = undefined; | |
| 1009 | 1009 | ||
| 1010 | 1010 | static { | |
@@ -1050,7 +1050,7 @@ class QuicSession { | |||
| 1050 | 1050 | ||
| 1051 | 1051 | /** | |
| 1052 | 1052 | * Get the session ticket associated with this session, if any. | |
| 1053 | - * @type {any} | ||
| 1053 | + * @type {object|undefined} | ||
| 1054 | 1054 | */ | |
| 1055 | 1055 | get sessionticket() { | |
| 1056 | 1056 | QuicSession.#assertIsQuicSession(this); | |
@@ -1846,7 +1846,7 @@ class QuicEndpoint { | |||
| 1846 | 1846 | ||
| 1847 | 1847 | /** | |
| 1848 | 1848 | * Initiates a session with a remote endpoint. | |
| 1849 | - * @param {{}} address | ||
| 1849 | + * @param {object} address | ||
| 1850 | 1850 | * @param {SessionOptions} [options] | |
| 1851 | 1851 | * @returns {QuicSession} | |
| 1852 | 1852 | */ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -893,8 +893,7 @@ function newStreamDuplexFromReadableWritablePair(pair = kEmptyObject, options = | |||
| 893 | 893 | ||
| 894 | 894 | /** | |
| 895 | 895 | * @typedef {import('./queuingstrategies').QueuingStrategy} QueuingStrategy | |
| 896 | - * @typedef {{}} StreamBase | ||
| 897 | - * @param {StreamBase} streamBase | ||
| 896 | + * @param {object} streamBase | ||
| 898 | 897 | * @param {QueuingStrategy} strategy | |
| 899 | 898 | * @returns {WritableStream} | |
| 900 | 899 | */ | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -327,7 +327,7 @@ function getHeapSnapshotOptionTests() { | |||
| 327 | 327 | } | |
| 328 | 328 | ||
| 329 | 329 | /** | |
| 330 | - * Similar to @see {validateByRetainingPathFromNodes} but creates the snapshot from scratch. | ||
| 330 | + * Similar to {@link validateByRetainingPathFromNodes} but creates the snapshot from scratch. | ||
| 331 | 331 | * @returns {object[]} | |
| 332 | 332 | */ | |
| 333 | 333 | function validateByRetainingPath(...args) { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments