UNPKG

jobiqo-cl

Version:

[![CircleCI](https://circleci.com/gh/jobiqo/jobiqo-cl.svg?style=svg&circle-token=5a24efa5b8bbc4879276123e77d0d3f35ca7144c)](https://circleci.com/gh/jobiqo/jobiqo-cl)

9 lines (8 loc) 324 B
/** * @file index.tsx * * @fileoverview Helper hook to match characters in a list of items. * Taken a list and a word it will find elements * of the list that match the word. Also can take a pattern for how to match the word to the items. */ export declare const useMatch: (data: any, term: any, pattern: any) => any;