@ztl-uwu/nuxt-content
Version:
Write your content inside your Nuxt app
8 lines (7 loc) • 383 B
TypeScript
import type { NavItem } from '@nuxt/content';
export declare const useContentHelpers: () => {
navBottomLink: (link: NavItem) => string | undefined;
navDirFromPath: (path: string, tree: NavItem[]) => NavItem[] | undefined;
navPageFromPath: (path: string, tree: NavItem[]) => NavItem | undefined;
navKeyFromPath: (path: string, key: string, tree: NavItem[]) => any;
};