6 lines
241 B
TypeScript
6 lines
241 B
TypeScript
|
|
import type { ParsedContentMeta } from '@nuxt/content';
|
||
|
|
/**
|
||
|
|
* Create NavItem array to be consumed from runtime plugin.
|
||
|
|
*/
|
||
|
|
export declare function createNav(contents: ParsedContentMeta[], configs: Record<string, ParsedContentMeta>): any[];
|