UNPKG

st-bundle

Version:

CLI for watching and bundling SpringType projects.

18 lines (17 loc) 476 B
import { IStyleSheetProps } from '../config/IStylesheetProps'; import { Context } from '../core/Context'; import { Module } from '../core/Module'; export interface ICSSHandleResourcesProps { options: IStyleSheetProps; ctx: Context; module: Module; url?: string; fileRoot?: string; } export declare function cssHandleResources(opts: { path: string; contents: string; }, props: ICSSHandleResourcesProps): { file: string; contents: string; };