// Warning: a module must have something besides just a "declare module" // section; otherwise it is ignored. export type UnaryPredicate = (a: T) => boolean declare module "./type" { interface Signatures { isReal: (a: T) => boolean isSquare: (a: T) => boolean } }