Node-Red configuration
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

postcss.d.mts 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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'