mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 04:09:31 +08:00
13 lines
345 B
Text
13 lines
345 B
Text
import { CompileOptions, Warning } from '../interfaces';
|
|
export default function compile(source: string, options?: CompileOptions): {
|
|
js: any;
|
|
css: any;
|
|
ast: import("../interfaces").Ast;
|
|
warnings: Warning[];
|
|
vars: import("../interfaces").Var[];
|
|
stats: {
|
|
timings: {
|
|
total: number;
|
|
};
|
|
};
|
|
};
|