Skip to content
New issue

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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

[QUESTION] How to create typed function with RegExp or MagicRegExp input? (TypeScript) #392

Open
kravetsone opened this issue Apr 16, 2024 · 0 comments
Assignees
Labels
documentation Improvements or additions to documentation

Comments

@kravetsone
Copy link

馃摎 Is your documentation request related to a problem?

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

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

image

I need to allow magic (with type-safety) and not regexp

馃攳 Where should you find it?

No response

鈩癸笍 Additional context

No response

@kravetsone kravetsone added the documentation Improvements or additions to documentation label Apr 16, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

2 participants