diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-19 01:17:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-19 06:17:22 +0000 |
commit | e9e504b40dde8691c32c933c7e27e28cfad1c8b5 (patch) | |
tree | 1128f311d9e5cb6316fbf237724eb2b87a522446 /test | |
parent | 20dd6112724a77fee16281930e79a2e6822acff7 (diff) |
Template type improvements (#380)
* Default templates to unknown
* Default typescript templates to unknown
* More template type updates
Diffstat (limited to 'test')
-rw-r--r-- | test/json-schema.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/json-schema.test.js b/test/json-schema.test.js index e6817d23..fb7644de 100644 --- a/test/json-schema.test.js +++ b/test/json-schema.test.js @@ -50,7 +50,7 @@ function createProxy(schema, value) { } /** - * @template T + * @template [T=unknown] * @param {T} value * @returns {T} */ |