svelte
Version:
Cybernetically enhanced web apps
14 lines (13 loc) • 345 B
TypeScript
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;
};
};
};