@mapples/cli 0.0.1 → 0.0.3

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.
@@ -0,0 +1,2 @@
1
+ export declare const syncAssets: () => Promise<void>;
2
+ export declare const showAssetsInfo: () => Promise<void>;
@@ -0,0 +1,2 @@
1
+ export declare const globalSync: () => Promise<void>;
2
+ export declare const globalInfo: () => Promise<void>;
@@ -1,4 +1 @@
1
- /**
2
- * Initializes the project by creating a configuration file
3
- */
4
1
  export declare const initProject: () => Promise<void>;
@@ -1,9 +1,2 @@
1
- /**
2
- * Synchronizes packages based on package-list.json
3
- * @param autoApprove Whether to skip user confirmation
4
- */
5
1
  export declare const syncPackages: (autoApprove?: boolean) => Promise<void>;
6
- /**
7
- * Shows information about packages in package-list.json
8
- */
9
2
  export declare const showPackageInfo: () => void;
@@ -1,8 +1,2 @@
1
- /**
2
- * Synchronizes pages from the API
3
- */
4
1
  export declare const syncPages: () => Promise<void>;
5
- /**
6
- * Shows information about pages in a table format
7
- */
8
2
  export declare const showPagesInfo: () => Promise<void>;
@@ -0,0 +1,2 @@
1
+ export declare const syncStyle: () => Promise<void>;
2
+ export declare const showStyleInfo: () => Promise<void>;