mirror of
https://github.com/zhigang1992/react-native-reanimated.git
synced 2026-01-12 17:42:44 +08:00
Add numbers and non-node values to concat type (#249)
This commit is contained in:
committed by
Michał Osadnik
parent
6034fdae45
commit
7d3ecedfb6
6
react-native-reanimated.d.ts
vendored
6
react-native-reanimated.d.ts
vendored
@@ -192,9 +192,9 @@ declare module 'react-native-reanimated' {
|
||||
sourceNode: Adaptable<number>,
|
||||
): AnimatedNode<number>;
|
||||
export function concat(
|
||||
a: AnimatedNode<string>,
|
||||
b: AnimatedNode<string>,
|
||||
...others: AnimatedNode<string>[],
|
||||
a: Adaptable<string> | Adaptable<number>,
|
||||
b: Adaptable<string> | Adaptable<number>,
|
||||
...others: Array<Adaptable<string> | Adaptable<number>>,
|
||||
): AnimatedNode<string>;
|
||||
export function cond(
|
||||
conditionNode: Adaptable<number>,
|
||||
|
||||
Reference in New Issue
Block a user