- Deleted obsolete localization file for English (en-us). - Updated version number from 1.0.4 to 1.1.0 in manifests.js and manifests.json. - Added localization support for German (de-de) in a new localization file. - Removed unnecessary dependencies from manifests. - Added .gitignore to exclude build artifacts and temporary files.
13 lines
578 B
TypeScript
13 lines
578 B
TypeScript
import { ITaxonomyNavigationService } from './ITaxonomyNavigationService';
|
|
import { IMenuItem } from './IMenuItem';
|
|
import { ApplicationCustomizerContext } from '@microsoft/sp-application-base';
|
|
export declare class TaxonomyNavigationService implements ITaxonomyNavigationService {
|
|
private context;
|
|
private termSetNameOrId;
|
|
private debug;
|
|
private cacheMinutes;
|
|
private _taxonomyPickerService;
|
|
constructor(context: ApplicationCustomizerContext, termSetNameOrId: string, debug?: boolean, cacheMinutes?: number);
|
|
getMenuItems(): Promise<IMenuItem[]>;
|
|
}
|