Variable IsConst

Is: {
    bool(v: any): v is boolean;
    defined<T>(v: undefined | null | T): v is T;
    fn(v: any): v is Function;
    num(v: any): v is number;
    obj(v: any): v is object;
    str(v: any): v is string;
} = ...