# @types/image-thumbnail

> TypeScript definitions for image-thumbnail

Latest version **1.0.4** (published 2023-11-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @types/image-thumbnail
pnpm add @types/image-thumbnail
yarn add @types/image-thumbnail
bun add @types/image-thumbnail
```

## Health

**Score 45/100 (D)** — status: abandoned.

Positive: has types; no vulnerabilities; high maintenance score; popular repo; extremely popular.

Warnings: low downloads; no esm support.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 1.0.4 |
| Published | 2023-11-07 |
| First published | 2019-10-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 3.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 51429 |
| Maintainers | types |

## Links

- npm: https://www.npmjs.com/package/@types/image-thumbnail
- Repository: https://github.com/DefinitelyTyped/DefinitelyTyped
- Homepage: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/image-thumbnail
- npm.io page: https://npm.io/package/@types/image-thumbnail

## Dependencies (1)

- [@types/node](https://npm.io/package/@types/node.md) *

## Recent versions

- 1.0.4 (latest) — 2023-11-07
- 1.0.1 (ts3.6) — 2021-07-08
- 1.0.0 (ts2.0) — 2019-10-15
- 1.0.3 — 2023-10-18
- 1.0.2 — 2023-09-26

## README

# Installation
> `npm install --save @types/image-thumbnail`

# Summary
This package contains type definitions for image-thumbnail (https://github.com/onildoaguiar/image-thumbnail#readme).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/image-thumbnail.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/image-thumbnail/index.d.ts)
````ts
/// <reference types="node" />

import { ReadStream } from "fs";

export = imageFunction;

declare function imageFunction(
    src: { uri: string } | string | Buffer | ReadStream,
    options?: { responseType: "buffer" } & imageFunction.Options,
): Promise<Buffer>;
declare function imageFunction(
    src: { uri: string } | string | Buffer | ReadStream,
    options?: { responseType: "base64" } & imageFunction.Options,
): Promise<string>;

declare namespace imageFunction {
    interface Options {
        percentage?: number | undefined;
        width?: number | undefined;
        height?: number | undefined;
        responseType?: string | undefined;
    }
}

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 03:09:37 GMT
 * Dependencies: [@types/node](https://npmjs.com/package/@types/node)

# Credits
These definitions were written by [Noam Alffasy](https://github.com/noamalffasy).

---
_Source: https://npm.io/package/@types/image-thumbnail · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
