@mintlify/common
Version:
Commonly shared code within Mintlify
7 lines (6 loc) • 349 B
TypeScript
import type { OpenApiFile, DecoratedNavigationPage } from '@mintlify/models';
import { AsyncAPIFile } from '../types/asyncapi.js';
export declare const getDecoratedNavPageAndSlug: (pagePath: string, pageContent: string, openApiFiles: OpenApiFile[], asyncApiFiles: AsyncAPIFile[]) => {
pageMetadata: DecoratedNavigationPage;
slug: string;
};