Skip to content

Commit 720f83a

Browse files
committed
chore: remove unused util types
1 parent 68818dc commit 720f83a

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

packages/core/src/types/props.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -361,12 +361,6 @@ export type PickAnimated<Props extends object, Fwd = true> = unknown &
361361
: TransitionValues<Props>
362362
>)
363363

364-
export type NonUndefined<A> = A extends undefined ? never : A
365-
366-
export type FunctionKeys<T extends object> = {
367-
[K in keyof T]-?: NonUndefined<T[K]> extends Function ? K : never
368-
}[keyof T]
369-
370364
/**
371365
* Pick the values of the `to` prop. Forward props are *not* included.
372366
*/

0 commit comments

Comments
 (0)