No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

70 líneas
1.0 KiB

  1. export {
  2. // postcss function / namespace
  3. default,
  4. // Value exports from postcss.mjs
  5. stringify,
  6. fromJSON,
  7. // @ts-expect-error This value exists, but it’s untyped.
  8. plugin,
  9. parse,
  10. list,
  11. document,
  12. comment,
  13. atRule,
  14. rule,
  15. decl,
  16. root,
  17. CssSyntaxError,
  18. Declaration,
  19. Container,
  20. Processor,
  21. Document,
  22. Comment,
  23. Warning,
  24. AtRule,
  25. Result,
  26. Input,
  27. Rule,
  28. Root,
  29. Node,
  30. // Type-only exports
  31. AcceptedPlugin,
  32. AnyNode,
  33. AtRuleProps,
  34. Builder,
  35. ChildNode,
  36. ChildProps,
  37. CommentProps,
  38. ContainerProps,
  39. DeclarationProps,
  40. DocumentProps,
  41. FilePosition,
  42. Helpers,
  43. JSONHydrator,
  44. Message,
  45. NodeErrorOptions,
  46. NodeProps,
  47. OldPlugin,
  48. Parser,
  49. Plugin,
  50. PluginCreator,
  51. Position,
  52. Postcss,
  53. ProcessOptions,
  54. RootProps,
  55. RuleProps,
  56. Source,
  57. SourceMap,
  58. SourceMapOptions,
  59. Stringifier,
  60. Syntax,
  61. TransformCallback,
  62. Transformer,
  63. WarningOptions,
  64. // This is a class, but it’s not re-exported. That’s why it’s exported as type-only here.
  65. type LazyResult
  66. } from './postcss.js'