feat(cli): add alchemy and improve cli tooling and structure (#520)

This commit is contained in:
Aman Varshney
2025-08-20 23:43:58 +05:30
committed by GitHub
parent c5430ae4fd
commit 5788876c47
152 changed files with 5804 additions and 2264 deletions

View File

@@ -9,8 +9,12 @@
*/
import type * as healthCheck from "../healthCheck.js";
import type * as hooks from "../hooks.js";
import type * as http from "../http.js";
import type * as showcase from "../showcase.js";
import type * as sponsors from "../sponsors.js";
import type * as stats from "../stats.js";
import type * as testimonials from "../testimonials.js";
import type {
ApiFromModules,
@@ -28,8 +32,12 @@ import type {
*/
declare const fullApi: ApiFromModules<{
healthCheck: typeof healthCheck;
hooks: typeof hooks;
http: typeof http;
showcase: typeof showcase;
sponsors: typeof sponsors;
stats: typeof stats;
testimonials: typeof testimonials;
}>;
declare const fullApiWithMounts: typeof fullApi;