@reliverse/dler 1.7.74 → 1.7.75

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.
@@ -70,43 +70,3 @@ declare const _default: import("@reliverse/rempts").Command<{
70
70
  };
71
71
  }>;
72
72
  export default _default;
73
- export declare function promptAggCommand(): Promise<void>;
74
- /**
75
- * Aggregator supporting:
76
- * - --import or default export,
77
- * - star or named exports,
78
- * - separate "type" vs "value" for both import and export.
79
- *
80
- * Options:
81
- * - Option to ignore specific directories (default: node_modules, .git)
82
- * - Option to sort aggregated lines alphabetically.
83
- * - Option to add a header comment in the aggregator output.
84
- * - Option to enable verbose logging.
85
- * - Deduplicates overloaded export names.
86
- * - Skips files whose basenames start with an internal marker (default: "#")
87
- * unless includeInternal is true or an alternative marker is provided.
88
- * - By default, updates only the auto-generated block in the aggregator file,
89
- * leaving any other content intact. Pass `overrideFile: true` to rewrite the entire file.
90
- */
91
- export declare function useAggregator({ inputDir, isRecursive, outFile, stripPrefix, useImport, useNamed, ignoreDirs, sortLines, headerComment, verbose, includeInternal, internalMarker, overrideFile, fileExtensions, separateTypesFile, typesOutFile, }: {
92
- inputDir: string;
93
- isRecursive: boolean;
94
- outFile: string;
95
- stripPrefix: string;
96
- useImport: boolean;
97
- useNamed: boolean;
98
- ignoreDirs?: string[];
99
- sortLines?: boolean;
100
- headerComment?: string;
101
- verbose?: boolean;
102
- includeInternal?: boolean;
103
- internalMarker?: string;
104
- overrideFile?: boolean;
105
- fileExtensions?: string[];
106
- separateTypesFile?: boolean;
107
- typesOutFile?: string;
108
- }): Promise<void>;
109
- /**
110
- * Prints usage examples based on whether dev mode or not.
111
- */
112
- export declare function printUsage(isDev?: boolean): void;