UNPKG

test-ic-wallet-middleware-hpl

Version:
10 lines (9 loc) 647 B
import { BaseHandler, IdentifierService, ILogger } from "@ic-wallet-middleware/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>; }