Skip to content

Commit 1442155

Browse files
committed
Add missing disableHtmlEscaping param in gettextInterpolate signature - fix #95
1 parent 1847e11 commit 1442155

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/vue.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ declare module 'vue/types/vue' {
1515
$pgettext: (context: string, msgid: string) => string;
1616
$ngettext: (msgid: string, plural: string, n: number) => string;
1717
$npgettext: (context: string, msgid: string, plural: string, n: number) => string;
18-
$gettextInterpolate: (msgid: string, context: object) => string;
18+
$gettextInterpolate: (msgid: string, context: object, disableHtmlEscaping: boolean) => string;
1919
}
2020

2121
interface VueConfiguration {

0 commit comments

Comments
 (0)