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
How to create typed function with RegExp or MagicRegExp input?
I write something like
function getMatchedResult<R extends MagicRegExp<any, any, any, any> | RegExp>(regexp: R, str: string) { return str.match(regexp); }
it doesn't matter Magic Regexp or just Regexp you place the function ReturnType is RegExpMatchArray | null
ReturnType
RegExpMatchArray | null
And is it possible not to use magic regexp as a dependency but to support it? (for example maybe implement compability types)
I am the maintainer of the Telegram Bot API framework - GramIO And if i add support magic-regexp it would be amazing
I need to allow magic (with type-safety) and not regexp
No response
The text was updated successfully, but these errors were encountered:
danielroe
No branches or pull requests
📚 Is your documentation request related to a problem?
How to create typed function with RegExp or MagicRegExp input?
I write something like
it doesn't matter Magic Regexp or just Regexp you place the function
ReturnType
isRegExpMatchArray | null
And is it possible not to use magic regexp as a dependency but to support it? (for example maybe implement compability types)
I am the maintainer of the Telegram Bot API framework - GramIO
And if i add support magic-regexp it would be amazing
I need to allow magic (with type-safety) and not regexp
🔍 Where should you find it?
No response
ℹ️ Additional context
No response
The text was updated successfully, but these errors were encountered: