source: node_modules/postcss/lib/postcss.d.mts

Last change on this file was 57e58a3, checked in by ste08 <sjovanoska@…>, 4 months ago

Initial commit

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