/** * @author songxiwen * @date 2020/12/10 13:54 */ import { Model } from 'mongoose'; import { BaseService } from '../../../base/base.service'; import { ThirdPartyPlatform } from '../model/third.party.platform'; import { ThirdPartyPlatformResponseType } from '../type/api.key.type'; export declare class ThirdPartyPlatformService extends BaseService { protected readonly model: Model; constructor(model: Model); getThirdPartyPlatformMap(): Promise<{ [key: string]: ThirdPartyPlatformResponseType; }>; }