import type { InvestmentsConverterType } from './InvestmentsConnector/InvestmentsOptions'; import type { MorningstarOptions } from '../Shared/MorningstarOptions'; export interface DWSRequest { url: string; type: InvestmentsConverterType; } export interface DWSResponse { [key: string]: Response; } export interface DWSConnectorOptions extends MorningstarOptions { languageId?: 'ENG' | 'SPA' | 'FRA' | 'DEU' | 'ITA' | 'JPN' | 'CHI' | 'ZHO' | 'KOR'; requests?: Array; } export default DWSConnectorOptions;