st-bundle
Version:
CLI for watching and bundling SpringType projects.
20 lines (19 loc) • 585 B
TypeScript
import { IStyleSheetProps } from '../../config/IStylesheetProps';
import { Context } from '../../core/Context';
import { Module } from '../../core/Module';
import { IStyleSheetProcessor } from '../interfaces';
export interface ILessHandlerProps {
ctx: Context;
module: Module;
options: IStyleSheetProps;
}
export declare function renderModule(props: {
ctx: Context;
module: Module;
less: any;
options: IStyleSheetProps;
}): Promise<{
map: string;
css: string;
}>;
export declare function lessHandler(props: ILessHandlerProps): IStyleSheetProcessor;