UNPKG

@mintlify/prebuild

Version:

Helpful functions for Mintlify's prebuild step

14 lines (13 loc) 511 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 '../createPage/index.js'; export * from '../createPage/preparseMdx/index.js'; export * from './update/index.js';