UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

27 lines (26 loc) 1.13 kB
/** * CodeAnalizerComment: Updated 1 imports on 2024-09-21 23:07:24 * Update:: import { check4This } to '@mikezimm/fps-core-v7/lib/logic/Links/CheckSearch;' */ import { IFpsHubSiteDataReturn } from '../../../../types/fps-returns/sites/nav/INavigationLink'; /** * * 2024-12-31: Has been moved to fps-core-v7 * import { findSimilarNavNodes, findSpecificNavNodes, } from "@mikezimm/fps-core-v7/lib/restAPIs/sites/nav/functions/findNavNodes"; * * @param hubNav * @param prop 'Title' or 'Url' are valid properties to compare * @param value Title or Url will be the value you are looking to find * @param level 0, 1, or 2 defines a specific children level. 0 is visible lables/links * @returns */ export declare function findSimilarNavNodes(hubNav: IFpsHubSiteDataReturn, prop: `Title` | `Url`, value: string, level?: number): number[][]; /** * * @param hubNav * @param prop * @param parentNodeTree * @returns */ export declare function findSpecificNavNodes(hubNav: IFpsHubSiteDataReturn, prop: `Title`, parentNodeTree: string[]): number[][]; //# sourceMappingURL=findNavNodes.d.ts.map