import { SymbolProfile } from '@prisma/client'; export interface DataEnhancerInterface { enhance({ response, symbol }: { response: Partial; symbol: string; }): Promise>; getName(): string; getTestSymbol(): string; }