@mintlify/prebuild
Version:
Helpful functions for Mintlify's prebuild step
16 lines (15 loc) • 439 B
TypeScript
import { DocsConfig } from '@mintlify/validation';
import type { Root } from 'mdast';
export declare const writeRssFiles: (docsConfig: DocsConfig, rssPages: {
targetPath: string;
sourcePath: string;
tree: Root;
snippets?: {
filename: string;
tree: Root;
importNames?: string[];
}[];
}[], contentDirectoryPath: string, allSnippets?: {
filename: string;
tree: Root;
}[]) => Promise<void>;