Skip to content

Instantly share code, notes, and snippets.

@develar
Created March 28, 2016 07:15
Show Gist options
  • Save develar/f898e3c1fd309ea4d750 to your computer and use it in GitHub Desktop.
Save develar/f898e3c1fd309ea4d750 to your computer and use it in GitHub Desktop.
declare module "image-size" {
interface ImageInfo {
width: number
height: number
type: string
}
function sizeOf(path: string, callback: (error: Error, dimensions: ImageInfo) => void): void
export = sizeOf
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment