import { IQuery } from '@libs/types/IQuery'; import { IOptions } from '@libs/types/IOptions'; import { UserSWGExtendedProfile } from '@libs/types/UserSWGExtendedProfile'; export interface ISwgProfileRepository { fetchProfile(query: IQuery, options: IOptions | undefined): Promise; }