Compare commits

..

2 Commits

Author SHA1 Message Date
Derrick Hammer 29d56b1ceb
*Update dist 2023-02-19 17:36:14 -05:00
Derrick Hammer d9e0e654d8
*Export utils and types from libresolver 2023-02-19 17:35:54 -05:00
3 changed files with 6 additions and 0 deletions

2
dist/index.d.ts vendored
View File

@ -1,3 +1,5 @@
import { ResolverModuleConstructor } from "./resolverRegistry.js";
export declare function setup(rm: ResolverModuleConstructor): void;
export * from "./resolverRegistry.js";
export * from "@lumeweb/libresolver/dist/util.js";
export * from "@lumeweb/libresolver/dist/types.js";

2
dist/index.js vendored
View File

@ -37,3 +37,5 @@ function handleGetSupportedTlds(aq) {
aq.respond(resolver.getSupportedTlds());
}
export * from "./resolverRegistry.js";
export * from "@lumeweb/libresolver/dist/util.js";
export * from "@lumeweb/libresolver/dist/types.js";

View File

@ -55,3 +55,5 @@ function handleGetSupportedTlds(aq: ActiveQuery) {
}
export * from "./resolverRegistry.js";
export * from "@lumeweb/libresolver/dist/util.js";
export * from "@lumeweb/libresolver/dist/types.js";