Version 1
[yaffs-website] / node_modules / uncss / node_modules / postcss / d.ts / stringify.d.ts
diff --git a/node_modules/uncss/node_modules/postcss/d.ts/stringify.d.ts b/node_modules/uncss/node_modules/postcss/d.ts/stringify.d.ts
new file mode 100644 (file)
index 0000000..1e39b8d
--- /dev/null
@@ -0,0 +1,11 @@
+import Stringifier from './stringifier';
+import postcss from './postcss';
+import Node from './node';
+/**
+ * Default function to convert a node tree into a CSS string.
+ */
+declare function stringify(node: Node, builder: Stringifier.Builder): void;
+declare module stringify {
+    var stringify: postcss.Syntax | postcss.Stringify;
+}
+export default stringify;