From f80fc7acf50d3a56dbe3a63d7111fc4b15ff17dd Mon Sep 17 00:00:00 2001 From: Jacek Smolak Date: Sat, 13 Aug 2022 12:37:33 +0200 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Export=20types=20(#192)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 036001b..50b9a93 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,6 +2,9 @@ import got from 'got' import * as domino from 'domino' import { Options, Context, RuleSet, MetaData } from './types' + +export * from './types' + import { metaDataRules } from './rules' const defaultOptions = { @@ -109,4 +112,4 @@ const getMetaData = async function(input: string | Partial, inputOption } export default getMetaData -module.exports = getMetaData \ No newline at end of file +module.exports = getMetaData