You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
It would be handy if clutz generated type guards for the goog.isX functions:
function isArray(val: any): val is Array<any>;
function isBoolean(val: any): val is boolean;
function isDateLike(val: any): val is goog.date.DateLike;
function isDef<T>(val: T | undefined): val is T;
function isDefAndNotNull<T>(val: T | undefined | null): val is T;
function isFunction(val: any): val is Function;
function isNull(val: any): val is null;
function isNumber(val: any): val is Number;
function isObject(val: any): val is Object;
function isString(val: any): val is string;
The text was updated successfully, but these errors were encountered:
It would be handy if clutz generated type guards for the goog.isX functions:
The text was updated successfully, but these errors were encountered: