st-bundle
Version:
CLI for watching and bundling SpringType projects.
18 lines (17 loc) • 654 B
TypeScript
import { IStyleSheetProps } from '../../config/IStylesheetProps';
import { Context } from '../../core/Context';
import { Module } from '../../core/Module';
import { IStylesheetModuleResponse, IStyleSheetProcessor } from '../interfaces';
interface IRenderModuleProps {
options?: IStyleSheetProps;
ctx: Context;
module: Module;
}
export declare function renderModule(props: IRenderModuleProps): Promise<IStylesheetModuleResponse>;
export interface IPostCSSHandlerProps {
ctx: Context;
module: Module;
options: IStyleSheetProps;
}
export declare function postCSSHandler(props: IPostCSSHandlerProps): IStyleSheetProcessor;
export {};