build: add precompiled CLI distribution

This commit is contained in:
2026-08-29 19:00:14 +08:00
parent d074681928
commit 4d1dc76e31
77 changed files with 3461 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
export interface EasySlidesConfig {
title: string;
description: string;
slidesDir: string;
outDir: string;
exportDir: string;
theme?: string;
}
export declare function loadProjectConfig(cwd?: string): Promise<EasySlidesConfig>;
export declare function normalizeConfig(value: Partial<EasySlidesConfig> | undefined): EasySlidesConfig;