postcss.mjs 937 B

1234567891011121314151617181920212223242526272829
  1. import postcss from './postcss.js'
  2. export default postcss
  3. export const stringify = postcss.stringify
  4. export const fromJSON = postcss.fromJSON
  5. export const plugin = postcss.plugin
  6. export const parse = postcss.parse
  7. export const list = postcss.list
  8. export const document = postcss.document
  9. export const comment = postcss.comment
  10. export const atRule = postcss.atRule
  11. export const rule = postcss.rule
  12. export const decl = postcss.decl
  13. export const root = postcss.root
  14. export const CssSyntaxError = postcss.CssSyntaxError
  15. export const Declaration = postcss.Declaration
  16. export const Container = postcss.Container
  17. export const Document = postcss.Document
  18. export const Comment = postcss.Comment
  19. export const Warning = postcss.Warning
  20. export const AtRule = postcss.AtRule
  21. export const Result = postcss.Result
  22. export const Input = postcss.Input
  23. export const Rule = postcss.Rule
  24. export const Root = postcss.Root
  25. export const Node = postcss.Node