/** * Interface for collection types supporting addition of multiple * values. */ export interface IInto { into(coll: Iterable): T; } //# sourceMappingURL=into.d.ts.map