UNPKG

rambda

Version:

Lightweight faster alternative to Ramda

13 lines (11 loc) 245 B
import {Exclude} from './Exclude' /** Remove **`M`** out of **`U`** * @param U to remove from * @param M to remove out * @returns **union** * @example * ```ts * ``` */ export type Filter<U extends any, M extends any> = Exclude<U, M>