UNPKG

@ic-wallet-kit/hpl

Version:
11 lines (10 loc) 671 B
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>; }