You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
351 B
18 lines
351 B
"use strict"; |
|
|
|
Object.defineProperty(exports, "__esModule", { |
|
value: true |
|
}); |
|
/** |
|
* A very generic node. Pretty much any element of a media query |
|
*/ |
|
|
|
function Node(opts) { |
|
this.after = opts.after; |
|
this.before = opts.before; |
|
this.type = opts.type; |
|
this.value = opts.value; |
|
this.sourceIndex = opts.sourceIndex; |
|
} |
|
|
|
exports.default = Node; |