We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seems like there is a bug when transforming template literals:
export type StoreVersion = `${number}.${number}.${number}` | number;
transforms to:
declare export type StoreVersion = undefined: /* NO PRINT IMPLEMENTED: TemplateLiteralType */ any | number;
Which flowgen crash caused by SyntaxError when checking by pretter:
flowgen
SyntaxError: Only declares and type imports are allowed inside declare module
I have a repo here: https://github.com/unional/global-store/tree/flow (pnpm build:flow)
pnpm build:flow
The text was updated successfully, but these errors were encountered:
Nice find, open to a fix
Sorry, something went wrong.
No branches or pull requests
Seems like there is a bug when transforming template literals:
transforms to:
Which
flowgen
crash caused by SyntaxError when checking by pretter:I have a repo here: https://github.com/unional/global-store/tree/flow (
pnpm build:flow
)The text was updated successfully, but these errors were encountered: