UNPKG

ngx-matomo

Version:

Matomo (aka. Piwik) web analytics for Angular applications.

8 lines (7 loc) 250 B
/** * Checks if a value or object is non null. * * @export */ export declare function isNonNull<T>(value: T | undefined | null): value is NonNullable<T>; export declare function isDefined<T>(value: T | undefined | null): value is NonNullable<T>;