You could just create an alias for the type and re-export it ?
# localsdl.nim
import sdl
type
SdlThread* = sdl.Thread
export sdl except Thread
RunThen use `import localsdl`
You could just create an alias for the type and re-export it ?
# localsdl.nim
import sdl
type
SdlThread* = sdl.Thread
export sdl except Thread
RunThen use `import localsdl`