source: imaps-frontend/node_modules/postcss/lib/postcss.mjs

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 980 bytes
Line 
1import postcss from './postcss.js'
2
3export default postcss
4
5export const stringify = postcss.stringify
6export const fromJSON = postcss.fromJSON
7export const plugin = postcss.plugin
8export const parse = postcss.parse
9export const list = postcss.list
10
11export const document = postcss.document
12export const comment = postcss.comment
13export const atRule = postcss.atRule
14export const rule = postcss.rule
15export const decl = postcss.decl
16export const root = postcss.root
17
18export const CssSyntaxError = postcss.CssSyntaxError
19export const Declaration = postcss.Declaration
20export const Container = postcss.Container
21export const Processor = postcss.Processor
22export const Document = postcss.Document
23export const Comment = postcss.Comment
24export const Warning = postcss.Warning
25export const AtRule = postcss.AtRule
26export const Result = postcss.Result
27export const Input = postcss.Input
28export const Rule = postcss.Rule
29export const Root = postcss.Root
30export const Node = postcss.Node
Note: See TracBrowser for help on using the repository browser.