@murumets-ee/create 0.1.9 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts DELETED
@@ -1,11 +0,0 @@
1
- type AppMode = 'single' | 'multi';
2
- interface ProjectOptions {
3
- name: string;
4
- mode: AppMode;
5
- installDeps: boolean;
6
- }
7
-
8
- type ProgressCallback = (message: string) => void;
9
- declare function scaffold(options: ProjectOptions, onProgress?: ProgressCallback): Promise<void>;
10
-
11
- export { type AppMode, type ProgressCallback, type ProjectOptions, scaffold };