import { IAgentContext, IPluginMethodMap } from '@veramo/core' import { GeolocationStoreArgs, IGeolocationStore } from '@sphereon/ssi-sdk.geolocation-store' export interface IAnomalyDetection extends IPluginMethodMap { anomalyDetectionLookupLocation(args: AnomalyDetectionLookupLocationArgs, context: IRequiredContext): Promise } export type PartialBy = Omit & Partial> export type AnomalyDetectionLookupLocationArgs = PartialBy export type AnomalyDetectionLookupLocationResult = { continent?: string country?: string } export type IRequiredContext = IAgentContext