Skip to content

Commit

Permalink
fix: add missing exports (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredLunde authored Apr 25, 2022
1 parent c61594e commit 85ed160
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@ export {
defaultComparator,
isDir,
isFile,
isPrompt,
FileTree,
Dir,
File,
Prompt,
} from "./file-tree";
export type { FileTreeNode, FileTreeData, FileTreeFactory } from "./file-tree";
export { Node } from "./node";
export { SubjectMap, SubjectSet } from "./observable-data";
export * as pathFx from "./path-fx";
export { subject } from "./tree/subject";
export type { Subject } from "./tree/subject";
export type { Subject, Observer } from "./tree/subject";
export type { FileTreeSnapshot, WindowRef } from "./types";
export { useDnd } from "./use-dnd";
export type { DndEvent, DndProps, UseDndPlugin, UseDndConfig } from "./use-dnd";
Expand Down

0 comments on commit 85ed160

Please sign in to comment.