Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
crowlKats committed Jan 24, 2025
1 parent fd1e010 commit 3887dcc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion js/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"exports": {
".": "./mod.ts",
"./types": "./types.d.ts",
"./html-types": "./html.d.ts"
"./html-types": "./html_types.d.ts"
},
"exclude": [
"!**"
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions js/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

import { instantiate } from "./deno_doc_wasm.generated.js";
import type { DocNode, Location } from "./types.d.ts";
import type { Page } from "./html.d.ts";
import type { Page } from "./html_types.d.ts";
import { createCache } from "@deno/cache-dir";
import type { CacheSetting, LoadResponse } from "@deno/graph";

export type { CacheSetting, LoadResponse } from "@deno/graph";
export * from "./types.d.ts";
export * from "./html.d.ts";
export * from "./html_types.d.ts";

const encoder = new TextEncoder();

Expand Down

0 comments on commit 3887dcc

Please sign in to comment.