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
Thanks to @daanboer PR(#1265), type inference now works with this library, but I have discovered that it doesn't work with template literals:
export type Replace< Input extends string, Search extends string, Replacement extends string > = Input extends `${infer Head}${Search}${infer Tail}` ? `${Head}${Replacement}${Tail}` : Input; export type MyType = Replace<"FooBarBaz", "Bar", "">; // => FooBaz
The ability to use Inferred types with template literals would be great.
The text was updated successfully, but these errors were encountered:
Thanks for the report. Would you like to start a PR?
Sorry, something went wrong.
infer
Successfully merging a pull request may close this issue.
Thanks to @daanboer PR(#1265), type inference now works with this library, but I have discovered that it doesn't work with template literals:
The ability to use Inferred types with template literals would be great.
The text was updated successfully, but these errors were encountered: