From 8bb5176c0ae06af94640155cc1bcaefc19881f5d Mon Sep 17 00:00:00 2001 From: Nate Stringham <44071655+nstringham@users.noreply.github.com> Date: Sat, 5 Sep 2020 12:19:11 -0400 Subject: [PATCH] fix: typescript declaration of titleTemplate (#603) fix #527 --- types/vue-meta.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/vue-meta.d.ts b/types/vue-meta.d.ts index 0e48efe..8efb605 100644 --- a/types/vue-meta.d.ts +++ b/types/vue-meta.d.ts @@ -172,7 +172,7 @@ export interface NoScriptProperty extends MetaDataProperty { export interface MetaInfo { title?: string - titleTemplate?: string | ((titleChunk: string) => string), + titleTemplate?: string | ((titleChunk: string) => string) | null, htmlAttrs?: AttributeProperty headAttrs?: AttributeProperty