15 lines
307 B
TypeScript
15 lines
307 B
TypeScript
|
|
export {
|
||
|
|
createDocumentService,
|
||
|
|
type DocumentService,
|
||
|
|
} from "./documents";
|
||
|
|
export {
|
||
|
|
createAnnotationService,
|
||
|
|
type AnnotationService,
|
||
|
|
type CreateAnnotationInput,
|
||
|
|
} from "./annotations";
|
||
|
|
export {
|
||
|
|
createEvidenceService,
|
||
|
|
type EvidenceService,
|
||
|
|
type CreateEvidenceItemInput,
|
||
|
|
} from "./evidence";
|