mirror of
https://github.com/certd/certd.git
synced 2026-07-12 08:17:32 +08:00
10 lines
242 B
TypeScript
10 lines
242 B
TypeScript
export * from "./email.js";
|
|
export * from "./cname.js";
|
|
export * from "./config.js";
|
|
export * from "./url.js";
|
|
export * from "./emit.js";
|
|
export * from "./runtime.js";
|
|
export type IServiceGetter = {
|
|
get: <T>(name: string) => Promise<T>;
|
|
};
|