Files
SCM-Manager/scm-ui/ui-components/src/repos/index.ts

38 lines
735 B
TypeScript
Raw Normal View History

2019-02-27 11:56:50 +01:00
import * as diffs from "./diffs";
2019-08-15 10:51:36 +02:00
import {
2019-02-27 11:56:50 +01:00
File,
FileChangeType,
Hunk,
Change,
2019-07-30 10:01:00 +02:00
ChangeType,
2019-02-27 11:56:50 +01:00
BaseContext,
AnnotationFactory,
AnnotationFactoryContext,
DiffEventHandler,
DiffEventContext
} from "./DiffTypes";
2019-10-21 10:57:56 +02:00
export { diffs };
export * from "./changesets";
export { default as Diff } from "./Diff";
export { default as DiffFile } from "./DiffFile";
export { default as DiffButton } from "./DiffButton";
2019-10-21 10:57:56 +02:00
export { default as LoadingDiff } from "./LoadingDiff";
2020-02-07 14:57:36 +01:00
export { DefaultCollapsed, DefaultCollapsedFunction } from "./defaultCollapsed";
2019-10-21 10:57:56 +02:00
export {
File,
FileChangeType,
Hunk,
Change,
ChangeType,
BaseContext,
AnnotationFactory,
AnnotationFactoryContext,
DiffEventHandler,
DiffEventContext
};