main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | export {
|
---|
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 |
|
---|
13 | document,
|
---|
14 | comment,
|
---|
15 | atRule,
|
---|
16 | rule,
|
---|
17 | decl,
|
---|
18 | root,
|
---|
19 |
|
---|
20 | CssSyntaxError,
|
---|
21 | Declaration,
|
---|
22 | Container,
|
---|
23 | Processor,
|
---|
24 | Document,
|
---|
25 | Comment,
|
---|
26 | Warning,
|
---|
27 | AtRule,
|
---|
28 | Result,
|
---|
29 | Input,
|
---|
30 | Rule,
|
---|
31 | Root,
|
---|
32 | Node,
|
---|
33 |
|
---|
34 | // Type-only exports
|
---|
35 | AcceptedPlugin,
|
---|
36 | AnyNode,
|
---|
37 | AtRuleProps,
|
---|
38 | Builder,
|
---|
39 | ChildNode,
|
---|
40 | ChildProps,
|
---|
41 | CommentProps,
|
---|
42 | ContainerProps,
|
---|
43 | DeclarationProps,
|
---|
44 | DocumentProps,
|
---|
45 | FilePosition,
|
---|
46 | Helpers,
|
---|
47 | JSONHydrator,
|
---|
48 | Message,
|
---|
49 | NodeErrorOptions,
|
---|
50 | NodeProps,
|
---|
51 | OldPlugin,
|
---|
52 | Parser,
|
---|
53 | Plugin,
|
---|
54 | PluginCreator,
|
---|
55 | Position,
|
---|
56 | Postcss,
|
---|
57 | ProcessOptions,
|
---|
58 | RootProps,
|
---|
59 | RuleProps,
|
---|
60 | Source,
|
---|
61 | SourceMap,
|
---|
62 | SourceMapOptions,
|
---|
63 | Stringifier,
|
---|
64 | Syntax,
|
---|
65 | TransformCallback,
|
---|
66 | Transformer,
|
---|
67 | WarningOptions,
|
---|
68 |
|
---|
69 | // This is a class, but it’s not re-exported. That’s why it’s exported as type-only here.
|
---|
70 | type LazyResult,
|
---|
71 |
|
---|
72 | } from './postcss.js'
|
---|
Note:
See
TracBrowser
for help on using the repository browser.