mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-08 17:37:24 +08:00
6 lines
351 B
TypeScript
6 lines
351 B
TypeScript
import { SiteConfig } from '../config';
|
|
import { BuildResult } from 'vite';
|
|
import { OutputChunk, OutputAsset } from 'rollup';
|
|
export declare function renderPage(config: SiteConfig, page: string, // foo.md
|
|
result: BuildResult, appChunk: OutputChunk, cssChunk: OutputAsset, pageToHashMap: Record<string, string>, hashMapStirng: string): Promise<void>;
|