import type { GridMenuItem, GridOption, MenuCommandItem, MenuOptionItem } from '../interfaces/index.js'; import type { BackendUtilityService } from '../services/backendUtility.service.js'; import type { SharedService } from '../services/shared.service.js'; import type { TranslaterService } from '../services/translater.service.js'; export declare class ExtensionUtility { private readonly sharedService; private readonly backendUtilities?; readonly translaterService?: TranslaterService | undefined; constructor(sharedService: SharedService, backendUtilities?: BackendUtilityService | undefined, translaterService?: TranslaterService | undefined); /** * From a Grid Menu object property name, we will return the correct title output string following this order * 1- if user provided a title, use it as the output title * 2- else if user provided a title key, use it to translate the output title * 3- else if nothing is provided use text defined as constants */ getPickerTitleOutputString(propName: string, pickerName: 'gridMenu' | 'columnPicker'): string; /** Refresh the dataset through the Backend Service */ refreshBackendDataset(inputGridOptions?: GridOption): void; /** Run the Override function when it exists, if it returns True then it is usable/visible */ runOverrideFunctionWhenExists(overrideFn: ((args: any) => boolean) | undefined, args: T): boolean; /** * @deprecated Sort items (by pointers) in an array by a property name * @param {Array} items array * @param {String} property name to sort with */ sortItems(items: any[], propertyName: string): void; /** Translate the array of items from an input key and assign them to their output key */ translateItems(items: T[], inputKey: string, outputKey: string): void; /** * Loop through all Menu Command Items and use `titleKey`, `subMenuTitleKey` properties to translate (or use Locale) appropriate `title` property * @param {Array} items - Menu Command Items array * @param {Object} gridOptions - Grid Options */ translateMenuItemsFromTitleKey(items: Array, subMenuItemsKey?: string): void; /** * When "enabledTranslate" is set to True, we will try to translate if the Translate Service exist or use the Locales when not * @param {String} translationKey * @param {String} localeKey * @param {String} textToUse - optionally provide a static text to use (that will completely override the other arguments of the method) */ translateWhenEnabledAndServiceExist(translationKey: string, localeKey: string, textToUse?: string): string; } //# sourceMappingURL=extensionUtility.d.ts.map