UNPKG

@thi.ng/api

Version:
8 lines 184 B
/** * Interface for collection types supporting addition of multiple * values. */ export interface IInto<V, T> { into(coll: Iterable<V>): T; } //# sourceMappingURL=into.d.ts.map