Files
Tiber365/node_modules/css-tree/lib/syntax/atrule/layer.js
2025-07-24 18:46:24 +02:00

13 lines
230 B
JavaScript

export default {
parse: {
prelude() {
return this.createSingleNodeList(
this.LayerList()
);
},
block() {
return this.Block(false);
}
}
};