1010@freestanding ( expression)
1111public macro escapeHTML(
1212 encoding: HTMLEncoding = . string,
13- representation : HTMLResultRepresentation = . literal,
13+ resultType : HTMLExpansionResultType = . literal,
1414 _ innerHTML: Sendable ...
1515) -> String = #externalMacro( module: " HTMLKitMacros " , type: " EscapeHTML " )
1616
@@ -20,7 +20,7 @@ public macro escapeHTML(
2020//@available(*, deprecated, message: "innerHTML is now initialized using brackets instead of parentheses")
2121public macro html< T> (
2222 encoding: HTMLEncoding = . string,
23- representation : HTMLResultRepresentation = . literal,
23+ resultType : HTMLExpansionResultType = . literal,
2424 lookupFiles: [ StaticString ] = [ ] ,
2525 _ innerHTML: Sendable ...
2626) -> T = #externalMacro( module: " HTMLKitMacros " , type: " HTMLElementMacro " )
@@ -30,7 +30,7 @@ public macro html<T>(
3030@freestanding ( expression)
3131public macro html< T> (
3232 encoding: HTMLEncoding = . string,
33- representation : HTMLResultRepresentation = . literal,
33+ resultType : HTMLExpansionResultType = . literal,
3434 lookupFiles: [ StaticString ] = [ ] ,
3535 _ innerHTML: ( ) -> Sendable ...
3636) -> T = #externalMacro( module: " HTMLKitMacros " , type: " HTMLElementMacro " )
@@ -39,7 +39,7 @@ public macro html<T>(
3939@freestanding ( expression)
4040public macro anyHTML(
4141 encoding: HTMLEncoding = . string,
42- representation : HTMLResultRepresentation = . literal,
42+ resultType : HTMLExpansionResultType = . literal,
4343 lookupFiles: [ StaticString ] = [ ] ,
4444 _ innerHTML: Sendable ...
4545) -> any Sendable = #externalMacro( module: " HTMLKitMacros " , type: " HTMLElementMacro " )
@@ -51,7 +51,7 @@ public macro anyHTML(
5151@freestanding ( expression)
5252public macro uncheckedHTML< T> (
5353 encoding: HTMLEncoding = . string,
54- representation : HTMLResultRepresentation = . literal,
54+ resultType : HTMLExpansionResultType = . literal,
5555 lookupFiles: [ StaticString ] = [ ] ,
5656 _ innerHTML: Sendable ...
5757) -> T = #externalMacro( module: " HTMLKitMacros " , type: " HTMLElementMacro " )
@@ -63,7 +63,7 @@ public macro uncheckedHTML<T>(
6363@freestanding ( expression)
6464public macro rawHTML< T> (
6565 encoding: HTMLEncoding = . string,
66- representation : HTMLResultRepresentation = . literal,
66+ resultType : HTMLExpansionResultType = . literal,
6767 lookupFiles: [ StaticString ] = [ ] ,
6868 minify: Bool = false ,
6969 _ innerHTML: Sendable ...
@@ -75,7 +75,7 @@ public macro rawHTML<T>(
7575@freestanding ( expression)
7676public macro anyRawHTML(
7777 encoding: HTMLEncoding = . string,
78- representation : HTMLResultRepresentation = . literal,
78+ resultType : HTMLExpansionResultType = . literal,
7979 lookupFiles: [ StaticString ] = [ ] ,
8080 minify: Bool = false ,
8181 _ innerHTML: Sendable ...
0 commit comments