* Returns a Slide object at the specified index. * * @param index - A slide index. * * @return A Slide object if available, or otherwise `undefined`.
( index: number )
| 163 | * @return A Slide object if available, or otherwise `undefined`. |
| 164 | */ |
| 165 | function getAt( index: number ): SlideComponent | undefined { |
| 166 | return filter( index )[ 0 ]; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Inserts a slide or slides at a specified index. |
no test coverage detected
searching dependent graphs…