Hi, I have a namespace issue.
I have a file that is generated and has a number of types and corresponding functions exported from it. I then inport all of the functions and all of the types into a non generated file. Some of the functions I want to override. So I change those functions and export all of the generated functions, minus the old version of the changed ones, plus the new versions of the changed ones.
When I import all of the generated types from the code generated file I get a namespace with all my types in it. Somehow I have to replace the old generated types with the new types I customized and export that as a name space. Otherwise my collection of functions wont match my collection of types.
Please let me know if this makes sense as I can try and expand on it. Basically I need to be able to customize some items that have been code generated and have the types match.