File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -129,9 +129,9 @@ declare function isString<T>(value?: any): value is string | String;
129
129
/** Tests if the specified type *or* expression can be used as an array. Compiles to a constant. */
130
130
declare function isArray < T > ( value ?: any ) : value is Array < any > ;
131
131
/** Tests if the specified type *or* expression is of a function type. Compiles to a constant. */
132
- declare function isFunction < T > ( value ?: any ) : value is Array < any > ;
132
+ declare function isFunction < T > ( value ?: any ) : value is ( ... args : any ) => any ;
133
133
/** Tests if the specified type *or* expression is of a nullable reference type. Compiles to a constant. */
134
- declare function isNullable < T > ( value ?: any ) : value is Array < any > ;
134
+ declare function isNullable < T > ( value ?: any ) : bool ;
135
135
/** Tests if the specified expression resolves to a defined element. Compiles to a constant. */
136
136
declare function isDefined ( expression : any ) : bool ;
137
137
/** Tests if the specified expression evaluates to a constant value. Compiles to a constant. */
You can’t perform that action at this time.
0 commit comments