st-bundle
Version:
CLI for watching and bundling SpringType projects.
13 lines (12 loc) • 450 B
TypeScript
import { IStyleSheetProps } from '../config/IStylesheetProps';
import { Context } from '../core/Context';
import { Module } from '../core/Module';
import { IStylesheetModuleResponse } from './interfaces';
export interface ICSSModuleRender {
ctx: Context;
module: Module;
options: IStyleSheetProps;
data: IStylesheetModuleResponse;
useDefault?: boolean;
}
export declare function cssDevModuleRender(props: ICSSModuleRender): void;