jobiqo-cl
Version:
[](https://circleci.com/gh/jobiqo/jobiqo-cl)
9 lines (8 loc) • 324 B
TypeScript
/**
* @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;