implemented api for diff annotations

This commit is contained in:
Sebastian Sdorra
2019-02-27 11:56:50 +01:00
parent 3ac47b0977
commit 891e3587b3
8 changed files with 280 additions and 44 deletions

View File

@@ -1,5 +1,20 @@
// @flow
import * as diffs from "./diffs";
export { diffs };
export * from "./changesets";
export { default as Diff } from "./Diff";
export { default as LoadingDiff } from "./LoadingDiff";
export type {
File,
FileChangeType,
Hunk,
Change,
BaseContext,
AnnotationFactory,
AnnotationFactoryContext,
DiffEventHandler,
DiffEventContext
} from "./DiffTypes";