io.bit3.jsass.OutputStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of io.bit3.jsass Show documentation
Show all versions of io.bit3.jsass Show documentation
SASS compiler using libsass.
The newest version!
package io.bit3.jsass;
public enum OutputStyle {
/**
* Nested style.
*/
NESTED(1),
/**
* Expanded style.
*/
EXPANDED(2),
/**
* Compact style.
*/
COMPACT(3),
/**
* Compressed style.
*/
COMPRESSED(4);
/**
* The numeric representation.
*
* This is primary used in the native adapter.
*/
public final int numeric;
OutputStyle(int numeric) {
this.numeric = numeric;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy