DefinitelyTyped/cssbeautify/cssbeautify-tests.ts
Peter Burns 779e53eb3b Add typings for cssbeautify library (#11460)
* Add typings for cssbeautify library

* Don't paper over the fact that cssbeautify isn't ES module compatible.
2016-10-02 17:06:55 -07:00

14 lines
208 B
TypeScript

import cssbeautify = require('./index');
var str = '';
str = cssbeautify(str);
str = cssbeautify(str, {});
str = cssbeautify(str, {
indent: ' ',
openbrace: 'separate-line',
autosemicolon: true
});