Interface EmbeddedSass.OutboundMessage.CompileResponse.CompileSuccessOrBuilder

    • Method Detail

      • getCss

        String getCss()
         The compiled CSS.
         
        string css = 1;
        Returns:
        The css.
      • getCssBytes

        ByteString getCssBytes()
         The compiled CSS.
         
        string css = 1;
        Returns:
        The bytes for css.
      • getSourceMap

        String getSourceMap()
         The JSON-encoded source map, or the empty string if
         `CompileRequest.source_map` was `false`.
         The compiler must not add a `"file"` key to this source map. It's the
         host's (or the host's user's) responsibility to determine how the
         generated CSS can be reached from the source map.
         
        string source_map = 2;
        Returns:
        The sourceMap.
      • getSourceMapBytes

        ByteString getSourceMapBytes()
         The JSON-encoded source map, or the empty string if
         `CompileRequest.source_map` was `false`.
         The compiler must not add a `"file"` key to this source map. It's the
         host's (or the host's user's) responsibility to determine how the
         generated CSS can be reached from the source map.
         
        string source_map = 2;
        Returns:
        The bytes for sourceMap.