st-bundle
Version:
CLI for watching and bundling SpringType projects.
20 lines (19 loc) • 665 B
TypeScript
import { IStyleSheetProps } from '../../config/IStylesheetProps';
import { Context } from '../../core/Context';
import { Module } from '../../core/Module';
import { IStyleSheetProcessor } from '../../stylesheet/interfaces';
import { IPluginCommon } from '../interfaces';
export interface ICSSContextHandler {
ctx: Context;
processor: IStyleSheetProcessor;
options: IStyleSheetProps;
module: Module;
shared: IPluginCommon;
}
export declare function setEmpty(): void;
export interface ICreateCSSModule {
css?: string;
module: Module;
shared: IPluginCommon;
}
export declare function cssContextHandler(props: ICSSContextHandler): void;