UNPKG

sums-up

Version:

👍 Sums Up ===

9 lines (8 loc) 249 B
interface Setoid { equals(a: Setoid): boolean; } interface Show { toString(): string; } declare type Unshift<T extends any[], V, U = (a: V, ...b: T) => void> = U extends (...x: infer R) => void ? R : never; export { Setoid, Show, Unshift };