Files
dealplustech/dealplustech-astro/node_modules/css-tree/lib/syntax/atrule/page.js
2026-03-02 12:35:14 +07:00

13 lines
232 B
JavaScript

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