11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
|
/**
|
||
|
* @since 1.5.0
|
||
|
*/
|
||
|
import { Index } from '..'
|
||
|
import { NonEmptyArray } from 'fp-ts/lib/NonEmptyArray'
|
||
|
/**
|
||
|
* @category constructor
|
||
|
* @since 1.5.0
|
||
|
*/
|
||
|
export declare function indexNonEmptyArray<A = never>(): Index<NonEmptyArray<A>, number, A>
|