Skip to content

Commit 341a999

Browse files
Mesteerydanielleadams
authored andcommittedFeb 1, 2022
doc: fix JSDoc in ESM loaders examples
PR-URL: #40984 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 714efe4 commit 341a999

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎doc/api/esm.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -678,8 +678,8 @@ Node.js module specifier resolution behavior_ when calling `defaultResolve`, the
678678
/**
679679
* @param {string} specifier
680680
* @param {{
681-
* conditions: !Array<string>,
682-
* parentURL: !(string | undefined),
681+
* conditions: string[],
682+
* parentURL: string | undefined,
683683
* }} context
684684
* @param {Function} defaultResolve
685685
* @returns {Promise<{ url: string }>}
@@ -772,8 +772,8 @@ format to a supported one, for example `yaml` to `module`.
772772
}} context If resolve settled with a `format`, that value is included here.
773773
* @param {Function} defaultLoad
774774
* @returns {Promise<{
775-
format: !string,
776-
source: !(string | ArrayBuffer | SharedArrayBuffer | Uint8Array),
775+
format: string,
776+
source: string | ArrayBuffer | SharedArrayBuffer | Uint8Array,
777777
}>}
778778
*/
779779
export async function load(url, context, defaultLoad) {

0 commit comments

Comments
 (0)