@types/selectn
TypeScript icon, indicating that this package has built-in type declarations

1.1.3 • Public • Published

Installation

npm install --save @types/selectn

Summary

This package contains type definitions for selectn (https://github.com/wilmoore/selectn.js).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/selectn.

index.d.ts

/**
 * Curried property accessor function that resolves deeply-nested object properties via dot/bracket-notation
 * string path while mitigating `TypeErrors` via friendly and composable API.
 *
 * @param path
 * Dot/bracket-notation string path or array.
 *
 * @param object
 * Object to access.
 *
 * @returns
 * Returns `selectn/1` when partially applied.
 *
 * Returns value at path if path exists.
 *
 * Returns `undefined` if path does not exist.
 */
declare function selectn(
    path: string | readonly string[],
    object: any,
): any;

declare function selectn(
    path: string | readonly string[],
): (object: any) => any;

export = selectn;

Additional Details

  • Last updated: Mon, 20 Nov 2023 23:36:24 GMT
  • Dependencies: none

Credits

These definitions were written by Ben Daly.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/selectn

Weekly Downloads

728

Version

1.1.3

License

MIT

Unpacked Size

3.82 kB

Total Files

5

Last publish

Collaborators

  • types