st-bundle
Version:
CLI for watching and bundling SpringType projects.
17 lines (16 loc) • 533 B
TypeScript
import { IStyleSheetProps } from '../config/IStylesheetProps';
export interface IResolveCSSModuleProps {
paths: Array<string>;
target: string;
extensions: Array<string>;
tryUnderscore: boolean;
options: IStyleSheetProps;
}
export declare function replaceCSSMacros(target: string, macros: {
[key: string]: string;
}): string;
export interface IResolveCSSModuleResult {
success: boolean;
path?: string;
}
export declare function cssResolveModule(props: IResolveCSSModuleProps): IResolveCSSModuleResult;