Security update for Core, with self-updated composer
[yaffs-website] / node_modules / uncss / node_modules / postcss / d.ts / stringify.d.ts
1 import Stringifier from './stringifier';
2 import postcss from './postcss';
3 import Node from './node';
4 /**
5  * Default function to convert a node tree into a CSS string.
6  */
7 declare function stringify(node: Node, builder: Stringifier.Builder): void;
8 declare module stringify {
9     var stringify: postcss.Syntax | postcss.Stringify;
10 }
11 export default stringify;