Skip to content

Commit

Permalink
style: drop needless type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
KnorpelSenf committed Jan 16, 2025
1 parent 7dc4d40 commit 1dfd55a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/api/api_gen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Deno.stdout.writeSync(
const cache = createCache();
const dot = enc.encode(".");
const docs = await doc(paths.map(([id]) => id), { load: cache.load });
const refs: Array<Ref> = paths.map(
const refs = paths.map(
([id, path, slug, name, description, shortdescription]): Ref => {
const nodes = docs[id];
Deno.stdout.writeSync(dot);
Expand Down

0 comments on commit 1dfd55a

Please sign in to comment.