@internal
(source: T)
| 17 | |
| 18 | /** @internal */ |
| 19 | static create<T extends ReadonlyArray<Value>>(source: T) { |
| 20 | return new AnimatedArray(source) |
| 21 | } |
| 22 | |
| 23 | getValue(): T { |
| 24 | return this.source.map(node => node.getValue()) as any |
no outgoing calls
no test coverage detected