HOME


sh-3ll 1.0
DIR:/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/levenary/
Upload File :
Current File : //proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/levenary/index.d.ts
declare module "levenary" {
  /**
  Return the string within `array`, whose Levenshtein distance from `str` is minimal.

	@example
	```
	import levenary from 'levenary';

	levenary('cat', ['cow', 'dog', 'pig']);
	//=> 'cow'
	```
	*/
  const levenary: (str: string, array: string[]) => string;
  export default levenary;
}