e.g ``` package xyz import "example.com/abcdxyz" type Demo struct { } func (demo *Demo) TestFunction(input abcdxyz.ImportedType){ } ``` would create an interface of ``` package x type Demo interface{ TestFunction(input abcdImportedType) } ``` The offending line of code is here: https://github.com/vburenin/ifacemaker/blob/master/maker/maker.go#L100