export interface IApiSourceResult<T> {
    source: string;
    data: T | undefined;
    score: number;
}
