type github.com/google/safehtml.Style

14 uses

	github.com/google/safehtml (current package)
		init.go#L30: func style(s string) Style {
		init.go#L31: 	return Style{s}
		style.go#L36: type Style struct {
		style.go#L81: func StyleFromConstant(style stringConstant) Style {
		style.go#L94: 	return Style{string(style)}
		style.go#L98: func (s Style) String() string {
		style.go#L167: func StyleFromProperties(properties StyleProperties) Style {
		style.go#L244: 	return Style{buf.String()}
		stylesheet.go#L48: func CSSRule(selector string, style Style) (StyleSheet, error) {

	github.com/google/safehtml/legacyconversions
		legacyconversions.go#L26: var style = raw.Style.(func(string) safehtml.Style)
		legacyconversions.go#L46: func RiskilyAssumeStyle(s string) safehtml.Style {

	github.com/google/safehtml/template
		sanitizers.go#L576: 		if safeTypeValue, ok := safehtmlutil.Indirect(args[0]).(safehtml.Style); ok {

	github.com/google/safehtml/uncheckedconversions
		uncheckedconversions.go#L31: var style = raw.Style.(func(string) safehtml.Style)
		uncheckedconversions.go#L95: func StyleFromStringKnownToSatisfyTypeContract(s string) safehtml.Style {