Custom renderable fixups (#13)

* Mark HBMustacheCustomRenderable public

* Add HBMustacheCustomRenderable tests

* swift format
This commit is contained in:
Adam Fowler
2021-05-03 16:55:10 +01:00
committed by GitHub
parent a2569dd667
commit c65a7956c8
2 changed files with 22 additions and 2 deletions

View File

@@ -14,7 +14,7 @@
import Foundation
protocol HBMustacheCustomRenderable {
public protocol HBMustacheCustomRenderable {
var renderText: String { get }
var isNull: Bool { get }
}