margin.js 553 B

1234567891011121314
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var IPropertyDescriptor_1 = require("../IPropertyDescriptor");
  4. var marginForSide = function (side) { return ({
  5. name: "margin-" + side,
  6. initialValue: '0',
  7. prefix: false,
  8. type: IPropertyDescriptor_1.PropertyDescriptorParsingType.TOKEN_VALUE
  9. }); };
  10. exports.marginTop = marginForSide('top');
  11. exports.marginRight = marginForSide('right');
  12. exports.marginBottom = marginForSide('bottom');
  13. exports.marginLeft = marginForSide('left');
  14. //# sourceMappingURL=margin.js.map