Browse Source

add proper imports to publication tree factory

master
limina1 7 months ago
parent
commit
893a02431a
  1. 4
      src/lib/utils/publication_tree_factory.ts

4
src/lib/utils/publication_tree_factory.ts

@ -7,10 +7,10 @@
import { PublicationTree } from "$lib/data_structures/publication_tree.ts"; import { PublicationTree } from "$lib/data_structures/publication_tree.ts";
import { SveltePublicationTree } from "$lib/components/publications/svelte_publication_tree.svelte.ts"; import { SveltePublicationTree } from "$lib/components/publications/svelte_publication_tree.svelte.ts";
import { parseAsciiDocAST } from "asciidoc_ast_parser.ts"; import { parseAsciiDocAST } from "$lib/utils/asciidoc_ast_parser.ts";
import { NDKEvent } from "@nostr-dev-kit/ndk"; import { NDKEvent } from "@nostr-dev-kit/ndk";
import type NDK from "@nostr-dev-kit/ndk"; import type NDK from "@nostr-dev-kit/ndk";
import { getMimeTags } from "mime.ts"; import { getMimeTags } from "$lib/utils/mime.ts";
export interface PublicationTreeFactoryResult { export interface PublicationTreeFactoryResult {
tree: PublicationTree; tree: PublicationTree;

Loading…
Cancel
Save