-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Update API extractor and regenerate the API report #11823
Conversation
|
@@ -1295,7 +1295,8 @@ type NextLink = (operation: Operation) => Observable<FetchResult>; | |||
type NextResultListener = (method: "next" | "error" | "complete", arg?: any) => any; | |||
|
|||
// @public | |||
export type NoInfer<T> = [T][T extends any ? 0 : never]; | |||
type NoInfer_2<T> = [T][T extends any ? 0 : never]; | |||
export { NoInfer_2 as NoInfer } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is something I missed the first time. Looks like it preserves the public exported name which is useful.
size-limit report 📦
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's go with this for now :)
NoInfer
update
This updates the API extractor tool and reruns the script. This is an alternative to #11822 which does a manual rename of the type.
cc @phryneas