mirror of
https://github.com/celesrenata/end-4-flakes.git
synced 2026-06-06 10:49:26 -05:00
19 lines
365 B
QML
19 lines
365 B
QML
pragma Singleton
|
|
import Quickshell
|
|
import "./levendist.js" as Levendist
|
|
|
|
/**
|
|
* Wrapper for levendist.js to play nicely with Quickshell's imports
|
|
*/
|
|
|
|
Singleton {
|
|
function computeScore(...args) {
|
|
return Levendist.computeScore(...args)
|
|
}
|
|
|
|
function computeTextMatchScore(...args) {
|
|
return Levendist.computeTextMatchScore(...args)
|
|
}
|
|
}
|
|
|