@arsedizioni/ars-utils 18.2.270 → 18.2.272
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.
|
@@ -538,13 +538,13 @@ export declare class ClipperUtils {
|
|
|
538
538
|
* @param value: the module name
|
|
539
539
|
* @returns the list of modules
|
|
540
540
|
*/
|
|
541
|
-
static getClipperModuleGroupItems(value: ClipperModuleGroup): NameValueItem<
|
|
541
|
+
static getClipperModuleGroupItems(value: ClipperModuleGroup): NameValueItem<ClipperModule>[];
|
|
542
542
|
/**
|
|
543
543
|
* Return the list of available sort options for a list of modules
|
|
544
544
|
* @param modules : the modules list
|
|
545
545
|
* @returns the list of availbale sort options
|
|
546
546
|
*/
|
|
547
|
-
static getClipperAvailableSortOptions(
|
|
547
|
+
static getClipperAvailableSortOptions(modules?: ClipperModule[] | null | undefined, params?: ClipperSearchParams | null | undefined): NameValueItem<ClipperSort>[];
|
|
548
548
|
}
|
|
549
549
|
export declare class ClipperSearchUtils {
|
|
550
550
|
/**
|