import { IPlugin } from '@fishx/types'; interface IOptions { name: string; scopeSelector?: string; excludeSelector?: string[]; } interface CssScopePluginOptions { scopeSelector?: string; excludeSelector?: string[]; } export default class CssScopePlugin implements IPlugin { options: IOptions; constructor(options: CssScopePluginOptions); getSelector(): any; chainWebpack(config: any): any; } export {};