mirror of
https://github.com/celesrenata/end-4-flakes.git
synced 2026-06-06 02:39:27 -05:00
19 lines
314 B
QML
19 lines
314 B
QML
pragma Singleton
|
|
import Quickshell
|
|
import "./fuzzysort.js" as FuzzySort
|
|
|
|
/**
|
|
* Wrapper for FuzzySort to play nicely with Quickshell's imports
|
|
*/
|
|
|
|
Singleton {
|
|
function go(...args) {
|
|
return FuzzySort.go(...args)
|
|
}
|
|
|
|
function prepare(...args) {
|
|
return FuzzySort.prepare(...args)
|
|
}
|
|
}
|
|
|