Skip to content

Commit 2911f3b

Browse files
Remove combing Keyframe with primitive types
Nevermind this doesn't do what I thought it would do
1 parent e3b4c95 commit 2911f3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,11 +242,11 @@ export class Keyframes<S extends object, DS extends object> extends PureComponen
242242
): (states: object) => (props: object) => Keyframes<S, DS>
243243
static Spring<S extends object, DS extends object>(
244244
states: object
245-
): (props: object) => Keyframes<S, DS> | Spring<S,DS>
245+
): (props: object) => Keyframes<S, DS>
246246
static Trail<S extends object, DS extends object>(
247247
states: object
248-
): (props: object) => Keyframes<S, DS> | Trail<S,DS>
248+
): (props: object) => Keyframes<S, DS>
249249
static Transition<S extends object, DS extends object>(
250250
states: object
251-
): (props: object) => Keyframes<S, DS> | Transition<S,DS>
251+
): (props: object) => Keyframes<S, DS>
252252
}

0 commit comments

Comments
 (0)