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