A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: type errors

+2
+1
src/_data/elements.js
··· 1 1 import { walk } from "@std/fs/walk"; 2 2 3 3 const srcDir = new URL("../", import.meta.url).pathname; 4 + /** @type {Record<string, string>} */ 4 5 const sources = {}; 5 6 6 7 for await (const entry of walk(srcDir + "components", { match: [/element\.js$/] })) {
+1
src/common/worker.js
··· 1 + /// <reference lib="webworker" /> 1 2 import { getTransferables } from "@okikio/transferables"; 2 3 import { debounceMicrotask } from "@vicary/debounce-microtask"; 3 4 import { xxh32 } from "xxh32";