UNPKG

maz-ui

Version:

A standalone components library for Vue.Js 3 & Nuxt.Js 3

6 lines (5 loc) 274 B
import { type Ref } from 'vue'; export declare function useStringMatching(string1: string | Ref<string>, string2: string | Ref<string>, threshold?: number | Ref<number>): { isMatching: import("vue").ComputedRef<boolean>; score: import("vue").ComputedRef<number>; };