blob: 0e202c80e62a241ad9f3c5a5e09d2b231d68196b [file] [log] [blame]
const { Container } = require('postcss')
class NestedDeclaration extends Container {
constructor (defaults) {
super(defaults)
this.type = 'decl'
this.isNested = true
if (!this.nodes) this.nodes = []
}
}
module.exports = NestedDeclaration