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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve Func #17

Open
Olian04 opened this issue Jul 16, 2023 · 0 comments
Open

Improve Func #17

Olian04 opened this issue Jul 16, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@Olian04
Copy link
Owner

Olian04 commented Jul 16, 2023

type Func<T extends unknown[], V = unknown> = (...args: T) => V;
type AnyFunc = <T extends unknown[], V>(...args: T) => V;

type AsyncFunc<T extends unknown[], V = unknown> = (...args: T) => Promise<V>;
type AnyAsyncFunc = <T extends unknown[], V>(...args: T) => Promise<V>;
@Olian04 Olian04 added the enhancement New feature or request label Jul 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant