Extends the tcomb library with PostCSS irreducible node types.
npm install tcomb-postcss title="Philosopher’s stone, logo of PostCSS"
src="http://postcss.github.io/postcss/logo-leftp.png">





Extends the tcomb library with PostCSS irreducible node types.
The following types are added to tcomb:
- Container
- Root
- Rule
- AtRule
- Decl
- Comment
``js
var t = require('tcomb-postcss');
var postcss = require('postcss');
var root = postcss.parse('a{}');
t.Root.is(root); // true
t.Rule.is(root.first); // true
t.AtRule.is(root.first); // false
``