fuse-box
Version:
Fuse-Box a bundler that does it right
11 lines (10 loc) • 423 B
TypeScript
import { IStyleSheetProps } from '../../config/IStylesheetProps';
import { Context } from '../../core/context';
import { IModule } from '../../moduleResolver/module';
import { IStyleSheetProcessor } from '../interfaces';
export interface IPostCSSHandlerProps {
ctx: Context;
module: IModule;
options: IStyleSheetProps;
}
export declare function stylusHandler(props: IPostCSSHandlerProps): IStyleSheetProcessor;