Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit 97b25f7

Browse files
committed
fix(build): TS warning on a missing Type
1 parent f777539 commit 97b25f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/angular-slickgrid/services/utilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export function htmlDecode(encodedStr: string): string {
6363
* Create a in-memory div, set it's inner text(which jQuery automatically encodes)
6464
* then grab the encoded contents back out. The div never exists on the page.
6565
*/
66-
export function htmlEncode(inputValue: string | TrustedHTML): string {
66+
export function htmlEncode(inputValue: any): string {
6767
const entityMap = {
6868
'&': '&',
6969
'<': '&lt;',

0 commit comments

Comments
 (0)