From dc305440c438d76fe2533eff7cf9772213542121 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Ch=C5=82odnicki?= Date: Fri, 30 Aug 2019 10:40:56 +0200 Subject: [PATCH] types: export metaInfo types directly from index (#441) To be able to annotate those in user's code when stored individually. Resolves #440 --- types/index.d.ts | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 99c06c4..ed4d0f5 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -7,5 +7,21 @@ export { VueMetaOptions, VueMetaPlugin, MetaInfo, - MetaInfoSSR + MetaInfoSSR, + AttributeProperty, + LinkPropertyBase, + LinkPropertyHref, + LinkPropertyHrefCallback, + MetaPropertyCharset, + MetaPropertyEquiv, + MetaPropertyName, + MetaPropertyMicrodata, + MetaPropertyProperty, + NoScriptProperty, + ScriptPropertyBase, + ScriptPropertyText, + ScriptPropertySrc, + ScriptPropertySrcCallback, + ScriptPropertyJson, + StyleProperty } from './vue-meta'