fuse-box
Version:
Fuse-Box a bundler that does it right
14 lines (13 loc) • 445 B
TypeScript
import { IStyleSheetProps } from '../config/IStylesheetProps';
export interface IAsModuleProps {
scopeBehaviour?: 'global' | 'local';
globalModulePaths?: Array<RegExp>;
generateScopedName?: (name: string, fileName: string, css: String) => string | string;
plugins?: Array<any>;
}
export interface IPluginCommon {
stylesheet?: IStyleSheetProps;
asText?: boolean;
asModule?: IAsModuleProps;
useDefault?: boolean;
}