From f90342d6b140241f7a6a95dea71c05bf309a7a52 Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Sun, 29 May 2022 15:01:35 -0500 Subject: [PATCH] feat: add docs/ to npmignore --- .npmignore | 3 ++- src/index.ts | 4 ---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.npmignore b/.npmignore index 5c5532a..506ff15 100644 --- a/.npmignore +++ b/.npmignore @@ -1,2 +1,3 @@ src/ -tsconfig.json \ No newline at end of file +tsconfig.json +docs/ \ No newline at end of file diff --git a/src/index.ts b/src/index.ts index 76c383b..4fd70b9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,8 +1,4 @@ -import type { UnionToIntersection } from './types/handler'; -import type { Module } from './handler/structures/module'; - export * as Sern from './handler/sern'; export * from './types/handler'; export * from './handler/structures/structxports'; export * from './handler/plugins/plugin'; -let p: UnionToIntersection;