mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-08-24 20:34:05 +02:00
15 lines
370 B
TypeScript
15 lines
370 B
TypeScript
import { useQuery } from "@tanstack/react-query";
|
|
import { platform } from "@yaakapp-internal/platform";
|
|
import { Fonts } from "./bindings/gen_fonts";
|
|
|
|
export async function listFonts() {
|
|
return platform.rpc<Fonts>("plugin:yaak-fonts|list", {});
|
|
}
|
|
|
|
export function useFonts() {
|
|
return useQuery({
|
|
queryKey: ["list_fonts"],
|
|
queryFn: () => listFonts(),
|
|
});
|
|
}
|