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