UNPKG

tiny-types

Version:

A tiny library that brings Tiny Types to JavaScript and TypeScript

5 lines (4 loc) 232 B
import { TinyType } from '../TinyType'; import { Predicate } from './Predicate'; export declare function isEqualTo(expectedValue: TinyType): Predicate<TinyType>; export declare function isEqualTo<T>(expectedValue: T): Predicate<T>;