Input file: ``` function cssMap(): Readonly<Record<string, string>>; ``` generated file: ``` function cssMap(): Readonly<{[key: string]: string>}; // incorrect syntax ``` The correct one should be ``` function cssMap(): Readonly<{[key: string]: string}>; ``` The workaround is not using `Readonly<Record>`.
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by liamqma and has received 1 comments.