Skip to content

Commit

Permalink
fix: type expots
Browse files Browse the repository at this point in the history
  • Loading branch information
hatton committed Jan 25, 2023
1 parent c1b15bf commit 101621b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 1 addition & 3 deletions docu-notion.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
using these example plugins.
*/

import { IDocuNotionConfig } from "./dist/config/configuration";
import { IPlugin, Log } from "./dist";
import { NotionBlock } from "./dist/types";
import { IPlugin, IDocuNotionConfig, Log, NotionBlock } from "./dist";

const dummyBlockModifier: IPlugin = {
name: "dummyBlockModifier",
Expand Down
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ run();

export * as Log from "./log";
export * from "./types";
export * from "./config/configuration";
export * from "./plugins/pluginTypes";
import type { IDocuNotionConfig } from "./config/configuration";
export type { IDocuNotionConfig };

0 comments on commit 101621b

Please sign in to comment.