io.bit3.jsass.context.Context 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.context;
import io.bit3.jsass.Options;
import java.io.Serializable;
import java.net.URI;
public interface Context extends Serializable {
/**
* Return the input file path.
*
* @return The input file path or null if no path is specified.
*/
URI getInputPath();
/**
* Return the output file path.
*
* @return The output file path or null if no path is specified.
*/
URI getOutputPath();
/**
* Return the compiler options.
*
* @return The compiler options.
*/
Options getOptions();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy