UNPKG

postcss

Version:

Tool for transforming styles with JS plugins

12 lines (11 loc) 352 B
import Stringifier from './stringifier'; import postcss from './postcss'; import Node from './node'; /** * Default function to convert nodes tree to CSS string. */ declare function stringify(node: Node, builder: Stringifier.Builder): void; declare module stringify { var stringify: postcss.Syntax | postcss.Stringify; } export default stringify;