@pnpm/fetcher-base
Version:
Types for pnpm-compatible fetchers
42 lines (31 loc) • 691 B
Markdown
# @pnpm/fetcher-base
> Types for pnpm-compatible fetchers
<!--@shields('npm')-->
[](https://www.npmjs.com/package/@pnpm/fetcher-base)
<!--/@-->
## Installation
```sh
pnpm add @pnpm/fetcher-base
```
## Usage
Here's a template for a fetcher using types from `@pnpm/fetcher-base`:
```ts
import { Resolution } from '@pnpm/resolver-base'
import {
FetchOptions,
FetchResult,
} from '@pnpm/fetcher-base'
export async function demoFetcher (
resolution: Resolution,
targetFolder: string,
opts: FetchOptions,
): Promise<FetchResult> {
// ...
return {
filesIndex,
tempLocation,
}
}
```
## License
MIT