mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 23:29:30 +08:00
5 lines
246 B
Text
5 lines
246 B
Text
import { PreprocessorGroup, Processed } from './types';
|
|
export * from './types';
|
|
export default function preprocess(source: string, preprocessor: PreprocessorGroup | PreprocessorGroup[], options?: {
|
|
filename?: string;
|
|
}): Promise<Processed>;
|