import { IProfile } from "./contracts"; /** * Defines the implementation contract for the wallet service. * * @export * @interface IWalletService */ export interface IWalletService { /** * Synchronise all wallets for the given profile. * * @param {IProfile} profile * @return {Promise} * @memberof IWalletService */ syncByProfile(profile: IProfile): Promise; }