mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
208 B
TypeScript
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
|
|
});
|