1//go:build go1.12 2// +build go1.12 3 4package bluemonday 5 6import "io" 7 8type stringWriterWriter interface { 9 io.Writer 10 io.StringWriter 11}