@@ -82,7 +82,7 @@ public protocol TemplateRepositoryDataSource {
82
82
/// - parameter templateID: The template ID of the template.
83
83
/// - throws: MustacheError
84
84
/// - returns: A Mustache template string.
85
- @available ( iOS 15 . 0 , macOS 12 . 0 , * )
85
+ @available ( iOS 15 . 0 , macOS 12 . 0 , tvOS 15 . 0 , * )
86
86
func templateStringForTemplateID( _ templaetID: TemplateID ) async throws -> String
87
87
}
88
88
@@ -353,7 +353,7 @@ final public class TemplateRepository {
353
353
}
354
354
}
355
355
356
- @available ( iOS 15 . 0 , macOS 12 . 0 , * )
356
+ @available ( iOS 15 . 0 , macOS 12 . 0 , tvOS 15 . 0 , * )
357
357
func templateAST( named name: String , relativeToTemplateID baseTemplateID: TemplateID ? = nil ) async throws -> TemplateAST {
358
358
guard let dataSource = self . dataSource else {
359
359
throw MustacheError ( kind: . templateNotFound, message: " Missing dataSource " , templateID: baseTemplateID)
@@ -510,7 +510,7 @@ final public class TemplateRepository {
510
510
return try NSString ( contentsOf: URL ( string: templateID) !, encoding: encoding. rawValue) as String
511
511
}
512
512
513
- @available ( iOS 15 . 0 , macOS 12 . 0 , * )
513
+ @available ( iOS 15 . 0 , macOS 12 . 0 , tvOS 15 . 0 , * )
514
514
func templateStringForTemplateID( _ templateID: TemplateID ) async throws -> String {
515
515
let ( data, _) = try await URLSession . shared. data ( from: URL ( string: templateID) !)
516
516
0 commit comments