| 49 | } |
| 50 | |
| 51 | interface Dimensions { |
| 52 | width: number; |
| 53 | height: number; |
| 54 | } |
| 55 | |
| 56 | export function getImageDimensionsFromUrl(filename: string): Dimensions | null { |
| 57 | const extension = getExtension(filename) as string; |
nothing calls this directly
no outgoing calls
no test coverage detected