export type DataCollectorArgsType = Record>; export interface MultipleDocumentPropertyCollectorInterface { collect(args: DataCollectorArgsType): Promise>; } export interface SingleDocumentPropertyCollectorInterface { collect(args: DataCollectorArgsType): Promise; }