# Installation
> `npm install --save @types/make-arrow-function`

# Summary
This package contains type definitions for make-arrow-function (https://github.com/ljharb/make-arrow-function#readme).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/make-arrow-function.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/make-arrow-function/index.d.ts)
````ts
type ArrowFunction = (...args: unknown[]) => unknown;

interface MakeArrowFunction {
    (): ArrowFunction | undefined;
    list: () => readonly ArrowFunction[];
}

declare const makeArrowFunction: MakeArrowFunction;

export = makeArrowFunction;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 09:09:39 GMT
 * Dependencies: none

# Credits
These definitions were written by [Jordan Harband](https://github.com/ljharb).
