12 lines
296 B
JavaScript
12 lines
296 B
JavaScript
|
|
"use strict";
|
||
|
|
|
||
|
|
const { CSSStyleDeclaration } = require("./CSSStyleDeclaration");
|
||
|
|
const propertyDefinitions = require("./generated/propertyDefinitions");
|
||
|
|
const { parsePropertyValue } = require("./parsers");
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
CSSStyleDeclaration,
|
||
|
|
parsePropertyValue,
|
||
|
|
propertyDefinitions
|
||
|
|
};
|