UNPKG

@ic-wallet-kit/hpl

Version:
10 lines (9 loc) 640 B
import { BaseHandler, IdentifierService, ILogger } from "@ic-wallet-kit/common"; import { CheckLedgerPrincipalForm } from "../../../forms/checks/checkLedgerPrincipalForm"; import { CheckLedgerPrincipalResult } from "../../../forms/checks/checkLedgerPrincipalResult"; export declare class CheckLedgerPrincipalHandler extends BaseHandler<CheckLedgerPrincipalForm, CheckLedgerPrincipalResult> { private identifierService; constructor(logger: ILogger, identifierService: IdentifierService); validate(form: CheckLedgerPrincipalForm): Promise<void>; process(form: CheckLedgerPrincipalForm): Promise<CheckLedgerPrincipalResult>; }