ts-to-html
Version:
TS and SASS compiler for a HTML with live preview
12 lines (11 loc) • 500 B
TypeScript
export declare const compileTS: (config?: import("webpack").Configuration) => Promise<unknown>;
export declare type ResultSASS = {
file: string;
css: string;
};
export declare type ErrorSASS<T = unknown> = {
error: T;
};
export declare const compileSASS: (...files: string[] | string[][]) => (ResultSASS | ErrorSASS<unknown>)[];
export declare const compileSassFile: (input: string, minified?: boolean) => Promise<string>;
export declare const compileAll: () => Promise<void>;