frontend/.pnpm-store/v3/files/3a/f6caaf118c96ef91b1647510f7560eaf7c845a4f633eaf4f22fa51033a188483ce5683a6bea5d8388f4cd97ce11ba3f23800271f70b458e5d2ce09be51309e

24 lines
580 B
Plaintext

import { CompileOptions, Warning } from '../interfaces';
export default function compile(source: string, options?: CompileOptions): {
js: any;
css: any;
ast: import("../interfaces").Ast;
warnings: Warning[];
vars: {
name: string;
export_name: string;
injected: boolean;
module: boolean;
mutated: boolean;
reassigned: boolean;
referenced: boolean;
writable: boolean;
referenced_from_script: boolean;
}[];
stats: {
timings: {
total: number;
};
};
};