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
    
    
    Run

Then use `import localsdl`

Reply via email to