Skip to content

Commit 5a4b48b

Browse files
committed
fix: type error
1 parent a40af4d commit 5a4b48b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/runtime/internal/utils.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@ export function assign(tar, src) {
1919
// Adapted from https://github.com/then/is-promise/blob/master/index.js
2020
// Distributed under MIT License https://github.com/then/is-promise/blob/master/LICENSE
2121
/**
22-
* @template T
23-
* @param {T} value
24-
* @returns {value is PromiseLike<T>}
22+
* @param {any} value
23+
* @returns {value is PromiseLike<any>}
2524
*/
2625
export function is_promise(value) {
2726
return (

0 commit comments

Comments
 (0)