UNPKG

@storybook/preset-scss

Version:
15 lines (11 loc) 352 B
import { Configuration, RuleSetCondition } from 'webpack'; interface Options { styleLoaderOptions?: object | false; cssLoaderOptions?: object | false; sassLoaderOptions?: object | false; rule?: RuleSetCondition; } declare interface PresetScss { webpack: (config?: Configuration, options?: Options) => Configuration; } export = PresetScss;