UNPKG

@mintlify/prebuild

Version:

Helpful functions for Mintlify's prebuild step

15 lines (14 loc) 549 B
export interface PrebuildResult { fileImportsMap: Map<string, Set<string>>; } export declare const prebuild: (contentDirectoryPath: string, { localSchema, groups, disableOpenApi, strict, }?: { localSchema?: boolean; groups?: string[]; disableOpenApi?: boolean; strict?: boolean; }) => Promise<PrebuildResult | undefined>; export * from './categorizeFilePaths.js'; export * from './getOpenApiFiles.js'; export * from '../createPage/index.js'; export * from '../createPage/preparseMdx/index.js'; export * from './update/index.js';