You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type NonFunctionPropertyNames<T> = {
[K in keyof T]: T[K] extends Function ? never : K;
}[keyof T];
export type PublicNonFunctionProperties<T> = Pick<T, NonFunctionPropertyNames<T>>;
The text was updated successfully, but these errors were encountered:
It might be something like this:
The text was updated successfully, but these errors were encountered: