@ic-wallet-kit/hpl
Version:
Ic middleware wallet HPL protocol
11 lines (10 loc) • 671 B
TypeScript
import { RemoveHplContactLinkForm, RemoveHplContactLinkResult } from "../../../forms";
import { HplContactRepository } from "../../../repositories/persists/hplContactRepository/hplContactRepository";
import { BaseHandler, ILogger } from "@ic-wallet-kit/common";
import "reflect-metadata";
export declare class RemoveHplContactLinkHandler extends BaseHandler<RemoveHplContactLinkForm, RemoveHplContactLinkResult> {
private hplContactRepository;
constructor(logger: ILogger, hplContactRepository: HplContactRepository);
validate(form: RemoveHplContactLinkForm): Promise<void>;
process(form: RemoveHplContactLinkForm): Promise<RemoveHplContactLinkResult>;
}