fuse-box
Version:
Fuse-Box a bundler that does it right
18 lines (17 loc) • 488 B
TypeScript
import { IStyleSheetProps } from '../config/IStylesheetProps';
import { Context } from '../core/context';
import { IModule } from '../moduleResolver/module';
export interface ICSSHandleResourcesProps {
ctx: Context;
fileRoot?: string;
module: IModule;
options: IStyleSheetProps;
url?: string;
}
export declare function cssHandleResources(opts: {
contents: string;
path: string;
}, props: ICSSHandleResourcesProps): {
contents: string;
file: string;
};