From c4eba6a73674de6d4b7622ddc1e3a1df7b581f62 Mon Sep 17 00:00:00 2001 From: joneff Date: Thu, 8 Sep 2022 09:56:34 +0300 Subject: [PATCH] chore: update typings --- types/index.d.ts | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index 450a4b6..cf0670e 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -4,11 +4,8 @@ import { compile } from './compile'; import { build, buildFiles } from './build'; -declare type Baka = { - compile: typeof compile; - build: typeof build; - buildFiles: typeof buildFiles; -} - -export = Baka; -export as namespace Baka; +export default Baka = { + compile, + build, + buildFiles +};