I have an interface that looks like this: ``` interface A { optObject?: { propertyA?: string; propertyB?: string; } } ``` and I'm trying to get the name "propertyA" by doing: `nameof<A>(a => a.optObject?.propertyA)` but I'm getting the following error: ` Unhandled node type (OptionalMemberExpression) in text: f.writerSettings?.autoSave` Am I doing this wrong or is optional chaining members not supported currently? Also, thank you so much for this library, it makes refactoring typescript 1000% easier, easily one of the best libraries I've worked with.
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by w0nche0l and has received 3 comments.