UNPKG

@mintlify/prebuild

Version:

Helpful functions for Mintlify's prebuild step

7 lines (6 loc) 516 B
import { ConfigType } from '@mintlify/models'; export declare const getFileExtension: (filename: string) => string; export declare const getConfigPath: (contentDirectoryPath: string, type: ConfigType) => Promise<string | null>; export declare const getMintIgnorePath: (contentDirectoryPath: string) => Promise<string | null>; export declare const getMintIgnore: (contentDirectoryPath: string) => Promise<string[]>; export declare const getConfigObj: (contentDirectoryPath: string, type: ConfigType) => Promise<any>;