Source: stylesheet.js

/**
 * An AuraJS stylesheet. This can be used to create a new AuraJS stylesheet which in turn can be converted back to CSS.
 */
class StyleSheet {
    constructor(styles) {
        this.styles = styles;
    }
}
export default StyleSheet;