UNPKG

test-ic-wallet-middleware-hpl

Version:
11 lines (10 loc) 678 B
import { RemoveHplContactLinkForm, RemoveHplContactLinkResult } from "../../../forms"; import { HplContactRepository } from "../../../repositories/persists/hplContactRepository/hplContactRepository"; import { BaseHandler, ILogger } from "@ic-wallet-middleware/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>; }