UNPKG

@brizy/ui

Version:
4 lines (3 loc) 144 B
export type Nothing = null | undefined; export type MVal<T> = T | Nothing; export declare const isNothing: <T>(t: Nothing | T) => t is Nothing;