Closed y4nnick closed 5 years ago
After creating a new translation package without any translations the react.d.ts file includes the following line, which is not valid.
react.d.ts
type LocalizedType =;
It should be: type LocalizedType = never;.
type LocalizedType = never;
After creating a new translation package without any translations the
react.d.ts
file includes the following line, which is not valid.It should be:
type LocalizedType = never;
.