export interface Filterable { filter(fn: (value: A) => Boolean): Filterable; } export default Filterable;