st-bundle
Version:
CLI for watching and bundling SpringType projects.
11 lines (10 loc) • 411 B
TypeScript
import { IStyleSheetProps } from '../../config/IStylesheetProps';
import { Context } from '../../core/Context';
import { Module } from '../../core/Module';
import { IStyleSheetProcessor } from '../interfaces';
export interface IPostCSSHandlerProps {
ctx: Context;
module: Module;
options: IStyleSheetProps;
}
export declare function stylusHandler(props: IPostCSSHandlerProps): IStyleSheetProcessor;