// Warning: a module must have something besides just a "declare module" // section; otherwise it is ignored. export type BinaryPredicate = {params: [T, T], returns: boolean} declare module "./type" { interface Operations { equal: BinaryPredicate unequal: BinaryPredicate } }