This commit is contained in:
Aevann1 2021-12-13 22:28:32 +00:00
parent 628618df89
commit e031240dff
3749 changed files with 1120848 additions and 1 deletions

34
node_modules/postcss-nested/index.d.ts generated vendored Normal file
View file

@ -0,0 +1,34 @@
// Original definitions (@types/postcss-nested)
// by Maxim Vorontsov <https://github.com/VorontsovMaxim>
import { PluginCreator } from 'postcss'
declare namespace nested {
interface Options {
/**
* By default, plugin will bubble only `@media` and `@supports` at-rules.
* You can add your custom at-rules to this list by this option.
*/
bubble?: string[]
/**
* By default, plugin will unwrap only `@font-face`, `@keyframes`,
* and `@document` at-rules. You can add your custom at-rules
* to this list by this option.
*/
unwrap?: string[]
/**
* By default, plugin will strip out any empty selector generated
* by intermediate nesting levels. You can set this option to `true`
* to preserve them.
*/
preserveEmpty?: boolean
}
type Nested = PluginCreator<Options>
}
declare const nested: nested.Nested
export = nested